diff options
author | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-04-29 18:48:43 -0500 |
---|---|---|
committer | Ryan S. Arnold <rsa@linux.vnet.ibm.com> | 2013-04-29 18:48:43 -0500 |
commit | 4eb401a9c95a1313baad1393b0c3e0508b5d3f9a (patch) | |
tree | 1a9c88ef3d25a70b2c0d51fc0c090014ba261dca /posix | |
parent | f2da7793096c58b30ca57380da4c1343cabc4044 (diff) | |
download | glibc-rsa/stdint.tar glibc-rsa/stdint.tar.gz glibc-rsa/stdint.tar.bz2 glibc-rsa/stdint.zip |
Add #include <stdint.h> for uint[32|64]_t usage.rsa/stdint
Diffstat (limited to 'posix')
-rw-r--r-- | posix/bug-regex5.c | 1 | ||||
-rw-r--r-- | posix/fnmatch_loop.c | 2 | ||||
-rw-r--r-- | posix/regcomp.c | 2 | ||||
-rw-r--r-- | posix/regexec.c | 2 | ||||
-rw-r--r-- | posix/tst-rfc3484-2.c | 1 | ||||
-rw-r--r-- | posix/tst-rfc3484-3.c | 1 | ||||
-rw-r--r-- | posix/tst-rfc3484.c | 1 |
7 files changed, 10 insertions, 0 deletions
diff --git a/posix/bug-regex5.c b/posix/bug-regex5.c index f199ffbfd3..fd18b19df4 100644 --- a/posix/bug-regex5.c +++ b/posix/bug-regex5.c @@ -1,5 +1,6 @@ #include <stdio.h> #include <string.h> +#include <stdint.h> #include <locale.h> #include <locale/localeinfo.h> diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index ef3c882a61..6c4301df13 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -15,6 +15,8 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#include <stdint.h> + struct STRUCT { const CHAR *pattern; diff --git a/posix/regcomp.c b/posix/regcomp.c index 578044155b..0ffc2fad8b 100644 --- a/posix/regcomp.c +++ b/posix/regcomp.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 re_compile_internal (regex_t *preg, const char * pattern, size_t length, reg_syntax_t syntax); static void re_compile_fastmap_iter (regex_t *bufp, 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; diff --git a/posix/tst-rfc3484-2.c b/posix/tst-rfc3484-2.c index a37be36e6a..fcf8a8cd60 100644 --- a/posix/tst-rfc3484-2.c +++ b/posix/tst-rfc3484-2.c @@ -1,6 +1,7 @@ #include <stdbool.h> #include <stdio.h> #include <ifaddrs.h> +#include <stdint.h> /* Internal definitions used in the libc code. */ #define __getservbyname_r getservbyname_r diff --git a/posix/tst-rfc3484-3.c b/posix/tst-rfc3484-3.c index 493e76015c..86d59be1ab 100644 --- a/posix/tst-rfc3484-3.c +++ b/posix/tst-rfc3484-3.c @@ -1,6 +1,7 @@ #include <stdbool.h> #include <stdio.h> #include <ifaddrs.h> +#include <stdint.h> /* Internal definitions used in the libc code. */ #define __getservbyname_r getservbyname_r diff --git a/posix/tst-rfc3484.c b/posix/tst-rfc3484.c index db3ae1b7bb..2726fa0ad9 100644 --- a/posix/tst-rfc3484.c +++ b/posix/tst-rfc3484.c @@ -1,6 +1,7 @@ #include <stdbool.h> #include <stdio.h> #include <ifaddrs.h> +#include <stdint.h> /* Internal definitions used in the libc code. */ #define __getservbyname_r getservbyname_r |