diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-16 16:53:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-16 16:53:11 -0400 |
commit | 32aea2087a699bb4bd9c34347b6ef8d164ee0d0b (patch) | |
tree | 2bc57c8cda1ba64547a2fa70db677d89882fc831 /include/regex.h | |
parent | c7d19f9923c66a2ddb47272f1e8fec8b804f54c4 (diff) | |
download | musl-32aea2087a699bb4bd9c34347b6ef8d164ee0d0b.tar.gz |
duplicate re_nsub in LSB/glibc ABI compatible location
Diffstat (limited to 'include/regex.h')
-rw-r--r-- | include/regex.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/regex.h b/include/regex.h index 3673bfa7..d57208a5 100644 --- a/include/regex.h +++ b/include/regex.h @@ -13,7 +13,8 @@ typedef long regoff_t; typedef struct { size_t re_nsub; - void *__opaque; + void *__opaque, *__padding[4]; + size_t __nsub2; } regex_t; typedef struct { |