diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-04-10 19:49:30 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-04-10 19:49:30 +0000 |
commit | 2a1e8e117e7f82940c48be08084d1c2f8c36b0a7 (patch) | |
tree | 2081b8cb4c9efa9698911f21e3b58c8d076d2ee1 /winsup/cygwin/regex/regex.h | |
parent | ac5ec9613715f3fd1ac972522df73c7543ae768f (diff) | |
download | cygnal-2a1e8e117e7f82940c48be08084d1c2f8c36b0a7.tar.gz cygnal-2a1e8e117e7f82940c48be08084d1c2f8c36b0a7.tar.bz2 cygnal-2a1e8e117e7f82940c48be08084d1c2f8c36b0a7.zip |
* regex/regex.h: Define regoff_t as _off_t.
* regex/regex2.h: Ditto.
Diffstat (limited to 'winsup/cygwin/regex/regex.h')
-rw-r--r-- | winsup/cygwin/regex/regex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/regex/regex.h b/winsup/cygwin/regex/regex.h index 0ef0ace36..ecba140b0 100644 --- a/winsup/cygwin/regex/regex.h +++ b/winsup/cygwin/regex/regex.h @@ -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 */ |