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-16 11:32:54 -0500 |
commit | e054f494306530720114b321b3d97ca2f397cbbb (patch) | |
tree | 08bd9b3309787b98c196961d5c8480bf65c7b2a8 /resolv | |
parent | 8c75f67421af1e6680ac465f49672021b6571904 (diff) | |
download | glibc-e054f494306530720114b321b3d97ca2f397cbbb.zip glibc-e054f494306530720114b321b3d97ca2f397cbbb.tar.gz glibc-e054f494306530720114b321b3d97ca2f397cbbb.tar.bz2 |
Add #include <stdint.h> for uint[32|64]_t usage (except installed headers).
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/nss_dns/dns-canon.c | 1 | ||||
-rw-r--r-- | resolv/nss_dns/dns-network.c | 1 | ||||
-rw-r--r-- | resolv/res_init.c | 1 | ||||
-rw-r--r-- | resolv/res_mkquery.c | 1 | ||||
-rw-r--r-- | resolv/tst-aton.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/resolv/nss_dns/dns-canon.c b/resolv/nss_dns/dns-canon.c index 090ed7d..cdc61b9 100644 --- a/resolv/nss_dns/dns-canon.c +++ b/resolv/nss_dns/dns-canon.c @@ -20,6 +20,7 @@ #include <netdb.h> #include <resolv.h> #include <stdlib.h> +#include <stdint.h> #include <arpa/nameser.h> #include <nsswitch.h> diff --git a/resolv/nss_dns/dns-network.c b/resolv/nss_dns/dns-network.c index 5c725b5..3c4db7e 100644 --- a/resolv/nss_dns/dns-network.c +++ b/resolv/nss_dns/dns-network.c @@ -61,6 +61,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <stdint.h> #include "nsswitch.h" #include <arpa/inet.h> diff --git a/resolv/res_init.c b/resolv/res_init.c index c58c763..002dec5 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -77,6 +77,7 @@ static const char rcsid[] = "$BINDId: res_init.c,v 8.16 2000/05/09 07:10:12 vixi #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <stdint.h> #include <arpa/inet.h> #include <arpa/nameser.h> #include <net/if.h> diff --git a/resolv/res_mkquery.c b/resolv/res_mkquery.c index 2bc2d24..e2c6a74 100644 --- a/resolv/res_mkquery.c +++ b/resolv/res_mkquery.c @@ -83,6 +83,7 @@ static const char rcsid[] = "$BINDId: res_mkquery.c,v 8.12 1999/10/13 16:39:40 v #ifdef _LIBC # include <hp-timing.h> +# include <stdint.h> # if HP_TIMING_AVAIL # define RANDOM_BITS(Var) { uint64_t v64; HP_TIMING_NOW (v64); Var = v64; } # endif diff --git a/resolv/tst-aton.c b/resolv/tst-aton.c index 6cb5960..4e9caf9 100644 --- a/resolv/tst-aton.c +++ b/resolv/tst-aton.c @@ -1,4 +1,5 @@ #include <stdio.h> +#include <stdint.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> |