about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan S. Arnold <rsa@linux.vnet.ibm.com>2013-05-01 10:59:42 -0500
committerRyan S. Arnold <rsa@linux.vnet.ibm.com>2013-05-01 10:59:42 -0500
commitac58450e8c9f9d3531ff2efe1d8b972b8fa8a44c (patch)
tree205505772ba5c75cc240465250962939ed8511ee
parent0695940b8ab4b7e69492e8ea071d19fc17dda092 (diff)
downloadglibc-rsa/stdint_headers.tar.gz
glibc-rsa/stdint_headers.tar.xz
glibc-rsa/stdint_headers.zip
Add #include <stdint.h> for uint[32|64]_t usage in installed headers. rsa/stdint_headers
-rw-r--r--ChangeLog19
-rw-r--r--bits/elfclass.h1
-rw-r--r--bits/netdb.h1
-rw-r--r--inet/netinet/icmp6.h1
-rw-r--r--inet/netinet/ip6.h1
-rw-r--r--nis/rpcsvc/nis.h1
-rw-r--r--nis/rpcsvc/nislib.h1
-rw-r--r--ports/ChangeLog.aarch645
-rw-r--r--ports/ChangeLog.alpha11
-rw-r--r--ports/ChangeLog.arm5
-rw-r--r--ports/ChangeLog.hppa5
-rw-r--r--ports/ChangeLog.ia645
-rw-r--r--ports/ChangeLog.m68k5
-rw-r--r--ports/ChangeLog.microblaze5
-rw-r--r--ports/ChangeLog.mips5
-rw-r--r--ports/sysdeps/aarch64/bits/link.h2
-rw-r--r--ports/sysdeps/alpha/bits/link.h1
-rw-r--r--ports/sysdeps/arm/bits/link.h1
-rw-r--r--ports/sysdeps/hppa/bits/link.h2
-rw-r--r--ports/sysdeps/ia64/bits/link.h2
-rw-r--r--ports/sysdeps/m68k/bits/link.h1
-rw-r--r--ports/sysdeps/microblaze/bits/link.h2
-rw-r--r--ports/sysdeps/mips/bits/link.h1
-rw-r--r--ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h1
-rw-r--r--ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h1
-rw-r--r--sunrpc/rpc/auth_des.h1
-rw-r--r--sunrpc/rpc/xdr.h1
-rw-r--r--sysdeps/powerpc/bits/link.h1
-rw-r--r--sysdeps/s390/bits/link.h1
-rw-r--r--sysdeps/sh/bits/link.h1
-rw-r--r--sysdeps/sparc/bits/link.h2
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/bits/ppc.h2
-rw-r--r--sysdeps/unix/sysv/linux/s390/bits/elfclass.h1
-rw-r--r--sysdeps/x86/bits/link.h1
34 files changed, 96 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f9a9bdcbea..bcfbad33bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,22 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* bits/elfclass.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+	* bits/netdb.h: Likewise.
+	* sysdeps/powerpc/bits/link.h: Likewise.
+	* sysdeps/s390/bits/link.h: Likewise.
+	* sysdeps/sh/bits/link.h: Likewise.
+	* sysdeps/sparc/bits/link.h: Likewise.
+	* sysdeps/unix/sysv/linux/powerpc/bits/ppc.h: Likewise.
+	* sysdeps/unix/sysv/linux/s390/bits/elfclass.h: Likewise.
+	* sysdeps/x86/bits/link.h: Likewise.
+	* inet/netinet/icmp6.h: Likewise.
+	* inet/netinet/ip6.h: Likewise.
+	* nis/rpcsvc/nis.h: Likewise.
+	* nis/rpcsvc/nislib.h: Likewise.
+	* sunrpc/rpc/auth_des.h: Likewise.
+	* sunrpc/rpc/xdr.h: Likewise.
+
 2013-05-01  Richard Smith  <richard@metafoo.co.uk>
 
 	* misc/sys/cdefs.h (__extern_inline, __extern_always_inline)
diff --git a/bits/elfclass.h b/bits/elfclass.h
index 180227d9e7..f6ed899e08 100644
--- a/bits/elfclass.h
+++ b/bits/elfclass.h
@@ -7,6 +7,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
diff --git a/bits/netdb.h b/bits/netdb.h
index fd0e8d140c..a017437ebf 100644
--- a/bits/netdb.h
+++ b/bits/netdb.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/netdb.h> directly; use <netdb.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Description of data base entry for a single network.  NOTE: here a
    poor assumption is made.  The network number is expected to fit
diff --git a/inet/netinet/icmp6.h b/inet/netinet/icmp6.h
index 49e30de771..900f8b1d0b 100644
--- a/inet/netinet/icmp6.h
+++ b/inet/netinet/icmp6.h
@@ -20,6 +20,7 @@
 
 #include <inttypes.h>
 #include <string.h>
+#include <stdint.h>
 #include <sys/types.h>
 #include <netinet/in.h>
 
diff --git a/inet/netinet/ip6.h b/inet/netinet/ip6.h
index 47c6f02a6e..61d5ae0f26 100644
--- a/inet/netinet/ip6.h
+++ b/inet/netinet/ip6.h
@@ -19,6 +19,7 @@
 #define _NETINET_IP6_H 1
 
 #include <inttypes.h>
+#include <stdint.h>
 #include <netinet/in.h>
 
 struct ip6_hdr
diff --git a/nis/rpcsvc/nis.h b/nis/rpcsvc/nis.h
index 5c5c7bb41b..8c1037fb11 100644
--- a/nis/rpcsvc/nis.h
+++ b/nis/rpcsvc/nis.h
@@ -33,6 +33,7 @@
 #define _RPCSVC_NIS_H 1
 
 #include <features.h>
+#include <stdint.h>
 #include <rpc/rpc.h>
 #include <rpcsvc/nis_tags.h>
 
diff --git a/nis/rpcsvc/nislib.h b/nis/rpcsvc/nislib.h
index 2f6fd768b3..0c10131fb2 100644
--- a/nis/rpcsvc/nislib.h
+++ b/nis/rpcsvc/nislib.h
@@ -20,6 +20,7 @@
 #define	__RPCSVC_NISLIB_H__
 
 #include <features.h>
+#include <stdint.h>
 
 __BEGIN_DECLS
 
diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64
index f01388f384..7ee941748c 100644
--- a/ports/ChangeLog.aarch64
+++ b/ports/ChangeLog.aarch64
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/aarch64/bits/link.h: Add missing #include <stdint.h>
+	due to uint[32|64]_t usage.
+
 2013-03-19  Andreas Schwab  <schwab@suse.de>
 
 	* sysdeps/unix/sysv/linux/aarch64/configure.in: Set
diff --git a/ports/ChangeLog.alpha b/ports/ChangeLog.alpha
index 9a77d276ab..bf82bd3426 100644
--- a/ports/ChangeLog.alpha
+++ b/ports/ChangeLog.alpha
@@ -1,3 +1,14 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/unix/sysv/linux/alpha/bits/elfclass.h: Add missing #include
+	<stdint.h> due to uint[32|64]_t usage.
+	* sysdeps/unix/sysv/linux/alpha/bits/netdb.h: Likewise.
+
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/alpha/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-03-06  Andreas Jaeger  <aj@suse.de>
 
 	* sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_HUGE_MASK)
diff --git a/ports/ChangeLog.arm b/ports/ChangeLog.arm
index 9bd3aad07e..9223ef8432 100644
--- a/ports/ChangeLog.arm
+++ b/ports/ChangeLog.arm
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/arm/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-04-19  Roland McGrath  <roland@hack.frob.com>
 
 	* sysdeps/arm/sysdep.h
diff --git a/ports/ChangeLog.hppa b/ports/ChangeLog.hppa
index 6aa0e9188b..7e62bf8c38 100644
--- a/ports/ChangeLog.hppa
+++ b/ports/ChangeLog.hppa
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/hppa/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
 
 	* sysdeps/hppa/math_private.h: New file.
diff --git a/ports/ChangeLog.ia64 b/ports/ChangeLog.ia64
index 50b5604ec1..c3366423c8 100644
--- a/ports/ChangeLog.ia64
+++ b/ports/ChangeLog.ia64
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/ia64/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-03-12  Mike Frysinger  <vapier@gentoo.org>
 
 	* sysdeps/unix/sysv/linux/ia64/sysdep.h (INTERNAL_SYSCALL_DECL): Add
diff --git a/ports/ChangeLog.m68k b/ports/ChangeLog.m68k
index 16f3c75ef7..ceeddea68d 100644
--- a/ports/ChangeLog.m68k
+++ b/ports/ChangeLog.m68k
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/m68k/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-04-11  Andreas Schwab  <schwab@suse.de>
 
 	* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update
diff --git a/ports/ChangeLog.microblaze b/ports/ChangeLog.microblaze
index 4323270de7..8f721af4dd 100644
--- a/ports/ChangeLog.microblaze
+++ b/ports/ChangeLog.microblaze
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/microblaze/bits/link.h: Add missing #include <stdint.h> due
+	to uint[32|64]_t usage.
+
 2013-03-28  David Holsgrove  <david.holsgrove@xilinx.com>
 
 	* sysdeps/microblaze/Implies: New file.
diff --git a/ports/ChangeLog.mips b/ports/ChangeLog.mips
index b221512655..026b63c437 100644
--- a/ports/ChangeLog.mips
+++ b/ports/ChangeLog.mips
@@ -1,3 +1,8 @@
+2013-05-01  Ryan S. Arnold  <rsa@linux.vnet.ibm.com>
+
+	* sysdeps/mips/bits/link.h: Add missing #include <stdint.h> due to
+	uint[32|64]_t usage.
+
 2013-04-02  Thomas Schwinge  <thomas@codesourcery.com>
 
 	* sysdeps/mips/math_private.h: New file.
diff --git a/ports/sysdeps/aarch64/bits/link.h b/ports/sysdeps/aarch64/bits/link.h
index 3408c5b239..bdbecb1590 100644
--- a/ports/sysdeps/aarch64/bits/link.h
+++ b/ports/sysdeps/aarch64/bits/link.h
@@ -20,6 +20,8 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
+
 /* Registers for entry into PLT on AArch64.  */
 typedef struct La_aarch64_regs
 {
diff --git a/ports/sysdeps/alpha/bits/link.h b/ports/sysdeps/alpha/bits/link.h
index 12bd9dc03f..c867299513 100644
--- a/ports/sysdeps/alpha/bits/link.h
+++ b/ports/sysdeps/alpha/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Registers for entry into PLT on Alpha.  */
 typedef struct La_alpha_regs
diff --git a/ports/sysdeps/arm/bits/link.h b/ports/sysdeps/arm/bits/link.h
index 2f995e814b..d7f6bfb96f 100644
--- a/ports/sysdeps/arm/bits/link.h
+++ b/ports/sysdeps/arm/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Registers for entry into PLT on ARM.  */
 typedef struct La_arm_regs
diff --git a/ports/sysdeps/hppa/bits/link.h b/ports/sysdeps/hppa/bits/link.h
index ccf13b433a..8a2068e353 100644
--- a/ports/sysdeps/hppa/bits/link.h
+++ b/ports/sysdeps/hppa/bits/link.h
@@ -19,6 +19,8 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
+
 /* Registers for entry into PLT on hppa.  */
 typedef struct La_hppa_regs
 {
diff --git a/ports/sysdeps/ia64/bits/link.h b/ports/sysdeps/ia64/bits/link.h
index dec8df859b..e30b720b41 100644
--- a/ports/sysdeps/ia64/bits/link.h
+++ b/ports/sysdeps/ia64/bits/link.h
@@ -19,6 +19,8 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
+
 /* Registers for entry into PLT on ia64.  */
 typedef struct La_ia64_regs
 {
diff --git a/ports/sysdeps/m68k/bits/link.h b/ports/sysdeps/m68k/bits/link.h
index 038c4bbe91..19bbd45f35 100644
--- a/ports/sysdeps/m68k/bits/link.h
+++ b/ports/sysdeps/m68k/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Registers for entry into PLT on M68K.  */
 typedef struct La_m68k_regs
diff --git a/ports/sysdeps/microblaze/bits/link.h b/ports/sysdeps/microblaze/bits/link.h
index 2b2842a8e8..dc69df0344 100644
--- a/ports/sysdeps/microblaze/bits/link.h
+++ b/ports/sysdeps/microblaze/bits/link.h
@@ -20,6 +20,8 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
+
 /* Registers for entry into PLT on Microblaze.  */
 typedef struct La_microblaze_regs
 {
diff --git a/ports/sysdeps/mips/bits/link.h b/ports/sysdeps/mips/bits/link.h
index b4e5226cb0..79a83346ed 100644
--- a/ports/sysdeps/mips/bits/link.h
+++ b/ports/sysdeps/mips/bits/link.h
@@ -20,6 +20,7 @@
 #endif
 
 #include <sgidefs.h>
+#include <stdint.h>
 
 #if _MIPS_SIM == _ABIO32
 
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h
index e5aa4a0fbd..75e604fe24 100644
--- a/ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h
+++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h
@@ -7,6 +7,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
diff --git a/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h b/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h
index b9437ff890..4a096d21bd 100644
--- a/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h
+++ b/ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/netdb.h> directly; use <netdb.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Description of data base entry for a single network.  NOTE: here a
    poor assumption is made.  The network number is expected to fit
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/sysdeps/powerpc/bits/link.h b/sysdeps/powerpc/bits/link.h
index b907bd6087..58386641f8 100644
--- a/sysdeps/powerpc/bits/link.h
+++ b/sysdeps/powerpc/bits/link.h
@@ -20,6 +20,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 #if __ELF_NATIVE_CLASS == 32
 
diff --git a/sysdeps/s390/bits/link.h b/sysdeps/s390/bits/link.h
index 0ea59ac215..3b8a274b3e 100644
--- a/sysdeps/s390/bits/link.h
+++ b/sysdeps/s390/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 #if __ELF_NATIVE_CLASS == 32
 
diff --git a/sysdeps/sh/bits/link.h b/sysdeps/sh/bits/link.h
index fed635e538..79d3c2d1e8 100644
--- a/sysdeps/sh/bits/link.h
+++ b/sysdeps/sh/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 /* Registers for entry into PLT on SH.  */
 typedef struct La_sh_regs
diff --git a/sysdeps/sparc/bits/link.h b/sysdeps/sparc/bits/link.h
index ffca19df8f..64496fa316 100644
--- a/sysdeps/sparc/bits/link.h
+++ b/sysdeps/sparc/bits/link.h
@@ -20,6 +20,8 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
+
 #if __WORDSIZE == 32
 
 typedef struct La_sparc32_regs
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h b/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h
index c562021d37..ade7d29e12 100644
--- a/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h
+++ b/sysdeps/unix/sysv/linux/powerpc/bits/ppc.h
@@ -23,6 +23,8 @@
 # error "Never include this file directly; use <sys/platform/ppc.h> instead."
 #endif
 
+#include <stdint.h>
+
 __BEGIN_DECLS
 
 /* Read the time base frequency.   */
diff --git a/sysdeps/unix/sysv/linux/s390/bits/elfclass.h b/sysdeps/unix/sysv/linux/s390/bits/elfclass.h
index 9d8a7df902..0048bc4a47 100644
--- a/sysdeps/unix/sysv/linux/s390/bits/elfclass.h
+++ b/sysdeps/unix/sysv/linux/s390/bits/elfclass.h
@@ -25,6 +25,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
diff --git a/sysdeps/x86/bits/link.h b/sysdeps/x86/bits/link.h
index 475b141588..41fbc08dc6 100644
--- a/sysdeps/x86/bits/link.h
+++ b/sysdeps/x86/bits/link.h
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 #ifndef __x86_64__
 /* Registers for entry into PLT on IA-32.  */