* regex/regex.h: Define regoff_t as _off_t.
* regex/regex2.h: Ditto.
This commit is contained in:
parent
ac5ec96137
commit
2a1e8e117e
|
@ -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>
|
||||
|
||||
* cygwin.din: Export wcscoll, wcswidth and wcwidth.
|
||||
|
|
|
@ -14,7 +14,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
/* === regex2.h === */
|
||||
typedef off_t regoff_t;
|
||||
typedef _off_t regoff_t;
|
||||
typedef struct {
|
||||
int re_magic;
|
||||
size_t re_nsub; /* number of parenthesized subexpressions */
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* First, the stuff that ends up in the outside-world include file
|
||||
= typedef off_t regoff_t;
|
||||
= typedef _off_t regoff_t;
|
||||
= typedef struct {
|
||||
= int re_magic;
|
||||
= size_t re_nsub; // number of parenthesized subexpressions
|
||||
|
|
Loading…
Reference in New Issue