* regex/regex.h: Define regoff_t as _off_t.

* regex/regex2.h: Ditto.
This commit is contained in:
Corinna Vinschen 2003-04-10 19:49:30 +00:00
parent ac5ec96137
commit 2a1e8e117e
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-04-10 Corinna Vinschen <corinna@vinschen.de>
* regex/regex.h: Define regoff_t as _off_t.
* regex/regex2.h: Ditto.
2003-04-10 Corinna Vinschen <corinna@vinschen.de> 2003-04-10 Corinna Vinschen <corinna@vinschen.de>
* cygwin.din: Export wcscoll, wcswidth and wcwidth. * cygwin.din: Export wcscoll, wcswidth and wcwidth.

View File

@ -14,7 +14,7 @@ extern "C" {
#endif #endif
/* === regex2.h === */ /* === regex2.h === */
typedef off_t regoff_t; typedef _off_t regoff_t;
typedef struct { typedef struct {
int re_magic; int re_magic;
size_t re_nsub; /* number of parenthesized subexpressions */ size_t re_nsub; /* number of parenthesized subexpressions */

View File

@ -1,6 +1,6 @@
/* /*
* First, the stuff that ends up in the outside-world include file * First, the stuff that ends up in the outside-world include file
= typedef off_t regoff_t; = typedef _off_t regoff_t;
= typedef struct { = typedef struct {
= int re_magic; = int re_magic;
= size_t re_nsub; // number of parenthesized subexpressions = size_t re_nsub; // number of parenthesized subexpressions