diff options
author | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-05-01 10:46:34 -0500 |
---|---|---|
committer | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-05-01 10:46:34 -0500 |
commit | 03eb46d4be01d389ccb88778047e6639ae132e0c (patch) | |
tree | f559059f67c16040c05ee1f6c67c290bc5bcb67c /posix/regexec.c | |
parent | 0695940b8ab4b7e69492e8ea071d19fc17dda092 (diff) | |
download | glibc-03eb46d4be01d389ccb88778047e6639ae132e0c.tar.gz glibc-03eb46d4be01d389ccb88778047e6639ae132e0c.tar.xz glibc-03eb46d4be01d389ccb88778047e6639ae132e0c.zip |
Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). rsa/stdint_noheaders
Diffstat (limited to 'posix/regexec.c')
-rw-r--r-- | posix/regexec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/posix/regexec.c b/posix/regexec.c index 5ca2bf67a0..f85c5e8017 100644 --- a/posix/regexec.c +++ b/posix/regexec.c @@ -17,6 +17,8 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <stdint.h> + static reg_errcode_t match_ctx_init (re_match_context_t *cache, int eflags, int n) internal_function; static void match_ctx_clean (re_match_context_t *mctx) internal_function; |