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 /sunrpc | |
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 'sunrpc')
-rw-r--r-- | sunrpc/auth_des.c | 1 | ||||
-rw-r--r-- | sunrpc/clnt_udp.c | 1 | ||||
-rw-r--r-- | sunrpc/rpc/auth_des.h | 1 | ||||
-rw-r--r-- | sunrpc/rpc/xdr.h | 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 |
9 files changed, 9 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/rpc/auth_des.h b/sunrpc/rpc/auth_des.h index 21d40cc569..ce90bd45a6 100644 --- a/sunrpc/rpc/auth_des.h +++ b/sunrpc/rpc/auth_des.h @@ -18,6 +18,7 @@ #ifndef _RPC_AUTH_DES_H #define _RPC_AUTH_DES_H 1 +#include <stdint.h> #include <sys/cdefs.h> #include <rpc/auth.h> diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index 4e31eb5fe2..63020bba3d 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -40,6 +40,7 @@ /* We need FILE. */ #include <stdio.h> +#include <stdint.h> __BEGIN_DECLS 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> |