author | Rich Felker <dalias@aerifal.cx> | 2013年07月22日 14:39:59 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2013年07月22日 14:39:59 -0400 |
commit | 8327ae0cb23b799bc55a45e0d4bd95f5a2b1cdf1 (patch) | |
tree | 1f79d37ba2a5fd06ccb21ebf6e392cbf914bb427 /include/regex.h | |
parent | 1da53dad278f98b7712ac002162afaa8815ba580 (diff) | |
download | musl-8327ae0cb23b799bc55a45e0d4bd95f5a2b1cdf1.tar.gz |
-rw-r--r-- | include/regex.h | 5 |
diff --git a/include/regex.h b/include/regex.h index ea9b894b..dce21771 100644 --- a/include/regex.h +++ b/include/regex.h @@ -7,13 +7,12 @@ extern "C" { #include <features.h> +#define __NEED_regoff_t #define __NEED_size_t #include <bits/alltypes.h> -typedef long regoff_t; - -typedef struct { +typedef struct re_pattern_buffer { size_t re_nsub; void *__opaque, *__padding[4]; size_t __nsub2; |