]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add #include <stdint.h> for uint[32|64]_t usage in installed headers. rsa/stdint_headers
authorRyan S. Arnold <rsa@linux.vnet.ibm.com>
Wed, 1 May 2013 15:59:42 +0000 (10:59 -0500)
committerRyan S. Arnold <rsa@linux.vnet.ibm.com>
Wed, 1 May 2013 15:59:42 +0000 (10:59 -0500)
34 files changed:
ChangeLog
bits/elfclass.h
bits/netdb.h
inet/netinet/icmp6.h
inet/netinet/ip6.h
nis/rpcsvc/nis.h
nis/rpcsvc/nislib.h
ports/ChangeLog.aarch64
ports/ChangeLog.alpha
ports/ChangeLog.arm
ports/ChangeLog.hppa
ports/ChangeLog.ia64
ports/ChangeLog.m68k
ports/ChangeLog.microblaze
ports/ChangeLog.mips
ports/sysdeps/aarch64/bits/link.h
ports/sysdeps/alpha/bits/link.h
ports/sysdeps/arm/bits/link.h
ports/sysdeps/hppa/bits/link.h
ports/sysdeps/ia64/bits/link.h
ports/sysdeps/m68k/bits/link.h
ports/sysdeps/microblaze/bits/link.h
ports/sysdeps/mips/bits/link.h
ports/sysdeps/unix/sysv/linux/alpha/bits/elfclass.h
ports/sysdeps/unix/sysv/linux/alpha/bits/netdb.h
sunrpc/rpc/auth_des.h
sunrpc/rpc/xdr.h
sysdeps/powerpc/bits/link.h
sysdeps/s390/bits/link.h
sysdeps/sh/bits/link.h
sysdeps/sparc/bits/link.h
sysdeps/unix/sysv/linux/powerpc/bits/ppc.h
sysdeps/unix/sysv/linux/s390/bits/elfclass.h
sysdeps/x86/bits/link.h

index f9a9bdcbeacfda265650dc9677173e57ef234acb..bcfbad33bf33adae6e6843cbd76209e63fa493f1 100644 (file)
--- 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)
index 180227d9e7a9bcd77b827cd8f2a5cfaf707c3dbc..f6ed899e080a0f7626062663ab7a6ba0b67e0507 100644 (file)
@@ -7,6 +7,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
index fd0e8d140c0716edff490627c4f9965352eeec6c..a017437ebf56f66099e10aa69d83e5052392a9d1 100644 (file)
@@ -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
index 49e30de7716f96da6e795de660588aad6d50dbb2..900f8b1d0b3a861ce608fa786c98581aac635b3d 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <inttypes.h>
 #include <string.h>
+#include <stdint.h>
 #include <sys/types.h>
 #include <netinet/in.h>
 
index 47c6f02a6e53c1f8c81337c747ec0d2a8e4cb33d..61d5ae0f260a984e2ba91091f4c3f3f3a07bcf02 100644 (file)
@@ -19,6 +19,7 @@
 #define _NETINET_IP6_H 1
 
 #include <inttypes.h>
+#include <stdint.h>
 #include <netinet/in.h>
 
 struct ip6_hdr
index 5c5c7bb41b50e0861826048d8ca8d0165467a694..8c1037fb1165ebfa87a3be7b0e8ca3ca8ba42008 100644 (file)
@@ -33,6 +33,7 @@
 #define _RPCSVC_NIS_H 1
 
 #include <features.h>
+#include <stdint.h>
 #include <rpc/rpc.h>
 #include <rpcsvc/nis_tags.h>
 
index 2f6fd768b3b982e85cf0f16683077355d44b4216..0c10131fb256548df1db8cb07273810927bc290c 100644 (file)
@@ -20,6 +20,7 @@
 #define        __RPCSVC_NISLIB_H__
 
 #include <features.h>
+#include <stdint.h>
 
 __BEGIN_DECLS
 
index f01388f3844f7ceeb6d049d4e85e5bda5ce86bb4..7ee941748cbe6e109f951d35b9b189f9a95dc0fb 100644 (file)
@@ -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
index 9a77d276abf3d359bb2ddec1725c136317eac912..bf82bd3426c6c2f8661d9c72cadbd11b877df50e 100644 (file)
@@ -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)
index 9bd3aad07e459ad6e299fb64e1cbe9d1fafe75e1..9223ef8432d5d4417fa2252594bbdda257e55f1b 100644 (file)
@@ -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
index 6aa0e9188b4544ac5345ba01212ecc4d6d2bcdcd..7e62bf8c38345ce10bf5d23afccc56c158af1ee2 100644 (file)
@@ -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.
index 50b5604ec181ea27756f67d80ff3456cfc1cddc2..c3366423c835c2ec11173366a4eab4b8caf7ca5b 100644 (file)
@@ -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
index 16f3c75ef757c309c2d6f2581401dfc9b29a6c16..ceeddea68d3387fce39d9b1d135687bc2a6d464f 100644 (file)
@@ -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
index 4323270de79377b5727cb4b2b25d1087e3ee922e..8f721af4dda7bbb842a3e53e0474ab7d21b45584 100644 (file)
@@ -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.
index b221512655711735d236780036b858772d9822ac..026b63c4377ec371d23a845734b20e5f9a4ebd62 100644 (file)
@@ -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.
index 3408c5b239cff17ad767ae46496c6ddab1dd7d87..bdbecb159064e350a782d1ea9f556ff175190ec5 100644 (file)
@@ -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
 {
index 12bd9dc03f4490a6fd77a0bd53e071d53af15a7e..c867299513a9eed8934daff740ea5b4eb4da2daa 100644 (file)
@@ -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
index 2f995e814b6fe317fb865d422515ebd0b9867472..d7f6bfb96feba40b794d92153cb241002e189f61 100644 (file)
@@ -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
index ccf13b433afef518bf863008b274b6e6a6760b03..8a2068e353b37cfd52572a4a59563650410d80a9 100644 (file)
@@ -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
 {
index dec8df859b08355140456bd34c62a17843482492..e30b720b415e12b06026aad1664be6a4931d62ac 100644 (file)
@@ -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
 {
index 038c4bbe91908a1173f445f0c3e4b261a06a1517..19bbd45f35afbbe3cec96c70bd0f95ffc42ef1fb 100644 (file)
@@ -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
index 2b2842a8e8cdc0f1901c189a0c1873ae9fe0971c..dc69df0344d1179a256e84128a8052581dfd87d2 100644 (file)
@@ -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
 {
index b4e5226cb0e9ace7e5e971b1d1c0f423b12afc0a..79a83346ed14911da701bbd752587f04001f8429 100644 (file)
@@ -20,6 +20,7 @@
 #endif
 
 #include <sgidefs.h>
+#include <stdint.h>
 
 #if _MIPS_SIM == _ABIO32
 
index e5aa4a0fbdf8fc79b8821616c4b002404757fc06..75e604fe24c21843a40baba4b47175d0eb62ddbb 100644 (file)
@@ -7,6 +7,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
index b9437ff890c548f9a474059288d578a7dee9127f..4a096d21bd9cdd9b6678afabbd248fa45ac8e59d 100644 (file)
@@ -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
index 21d40cc5691b0a423cbc332c08f06b8086dfd001..ce90bd45a6409738a87e5eb54a3aa0be51198c2d 100644 (file)
@@ -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>
 
index 4e31eb5fe278afbef4723134e6446255a224c4e3..63020bba3d456269ee7d8f86c77eb55948323cb0 100644 (file)
@@ -40,6 +40,7 @@
 
 /* We need FILE.  */
 #include <stdio.h>
+#include <stdint.h>
 
 __BEGIN_DECLS
 
index b907bd6087f38ffb68836778e723f487441eb1e8..58386641f82fc59fefc6b5a2f5f040d74be8c9d9 100644 (file)
@@ -20,6 +20,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 #if __ELF_NATIVE_CLASS == 32
 
index 0ea59ac215fc59f66344761ea0cc7f0ac92f1639..3b8a274b3eb4eea6b474261a5773c350880f2137 100644 (file)
@@ -19,6 +19,7 @@
 # error "Never include <bits/link.h> directly; use <link.h> instead."
 #endif
 
+#include <stdint.h>
 
 #if __ELF_NATIVE_CLASS == 32
 
index fed635e5380d809585398bfd6cee8ba538bc1df6..79d3c2d1e817d7f7830c403401b40026fee5e3e7 100644 (file)
@@ -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
index ffca19df8f97dc6b5482bf3632651a1de65b8dec..64496fa31669303b7acc71be6ef8b2c2af3e7fb5 100644 (file)
@@ -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
index c562021d370fb3fc336054e723dbb9280a266eef..ade7d29e126f835ce0d6ab287a8d2418da03405e 100644 (file)
@@ -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.   */
index 9d8a7df9027746d8cbc0a803157d20fd8b258dae..0048bc4a47ab954c227461c4dc8768b925125770 100644 (file)
@@ -25,6 +25,7 @@
 #endif
 
 #include <bits/wordsize.h>
+#include <stdint.h>
 
 #define __ELF_NATIVE_CLASS __WORDSIZE
 
index 475b14158804f1b4c8be916269529831872301cd..41fbc08dc6ab56c6f9216ef88d055749d2394610 100644 (file)
@@ -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.  */