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 /sunrpc | |
parent | 8c75f67421af1e6680ac465f49672021b6571904 (diff) | |
download | glibc-e054f494306530720114b321b3d97ca2f397cbbb.tar glibc-e054f494306530720114b321b3d97ca2f397cbbb.tar.gz glibc-e054f494306530720114b321b3d97ca2f397cbbb.tar.bz2 glibc-e054f494306530720114b321b3d97ca2f397cbbb.zip |
Add #include <stdint.h> for uint[32|64]_t usage (except installed headers).
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/auth_des.c | 1 | ||||
-rw-r--r-- | sunrpc/clnt_udp.c | 1 | ||||
-rw-r--r-- | sunrpc/rtime.c | 1 | ||||
-rw-r--r-- | sunrpc/svcauth_des.c | 1 | ||||
-rw-r--r-- | sunrpc/xdr.c | 1 | ||||
-rw-r--r-- | sunrpc/xdr_intXX_t.c | 1 | ||||
-rw-r--r-- | sunrpc/xdr_rec.c | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/sunrpc/auth_des.c b/sunrpc/auth_des.c index 0408d60826..b299c456d6 100644 --- a/sunrpc/auth_des.c +++ b/sunrpc/auth_des.c @@ -33,6 +33,7 @@ */ #include <string.h> +#include <stdint.h> #include <rpc/des_crypt.h> #include <rpc/types.h> #include <rpc/auth.h> diff --git a/sunrpc/clnt_udp.c b/sunrpc/clnt_udp.c index 8890cc6cfc..7fc077730d 100644 --- a/sunrpc/clnt_udp.c +++ b/sunrpc/clnt_udp.c @@ -42,6 +42,7 @@ #include <sys/ioctl.h> #include <netdb.h> #include <errno.h> +#include <stdint.h> #include <rpc/pmap_clnt.h> #include <net/if.h> #include <ifaddrs.h> diff --git a/sunrpc/rtime.c b/sunrpc/rtime.c index bcb280b48f..d224624f8b 100644 --- a/sunrpc/rtime.c +++ b/sunrpc/rtime.c @@ -39,6 +39,7 @@ */ #include <stdio.h> #include <unistd.h> +#include <stdint.h> #include <rpc/rpc.h> #include <rpc/clnt.h> #include <sys/types.h> diff --git a/sunrpc/svcauth_des.c b/sunrpc/svcauth_des.c index 9609734960..a0f961db12 100644 --- a/sunrpc/svcauth_des.c +++ b/sunrpc/svcauth_des.c @@ -43,6 +43,7 @@ #include <limits.h> #include <string.h> +#include <stdint.h> #include <sys/param.h> #include <netinet/in.h> #include <rpc/rpc.h> diff --git a/sunrpc/xdr.c b/sunrpc/xdr.c index 7eac2d40f0..b3f96ca4dc 100644 --- a/sunrpc/xdr.c +++ b/sunrpc/xdr.c @@ -40,6 +40,7 @@ #include <string.h> #include <libintl.h> #include <wchar.h> +#include <stdint.h> #include <rpc/types.h> #include <rpc/xdr.h> diff --git a/sunrpc/xdr_intXX_t.c b/sunrpc/xdr_intXX_t.c index 39604c95b0..9de567cab4 100644 --- a/sunrpc/xdr_intXX_t.c +++ b/sunrpc/xdr_intXX_t.c @@ -21,6 +21,7 @@ /* We play dirty tricks with aliases. */ #include <rpc/xdr.h> +#include <stdint.h> /* XDR 64bit integers */ bool_t diff --git a/sunrpc/xdr_rec.c b/sunrpc/xdr_rec.c index f5d6ef2af9..9d79ace4b7 100644 --- a/sunrpc/xdr_rec.c +++ b/sunrpc/xdr_rec.c @@ -45,6 +45,7 @@ #include <stdio.h> #include <string.h> #include <unistd.h> +#include <stdint.h> #include <rpc/rpc.h> #include <libintl.h> #include <wchar.h> |