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 /sysdeps/generic | |
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 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/ldconfig.h | 2 | ||||
-rw-r--r-- | sysdeps/generic/ldsodefs.h | 1 | ||||
-rw-r--r-- | sysdeps/generic/memusage.h | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/sysdeps/generic/ldconfig.h b/sysdeps/generic/ldconfig.h index ca3f0e430f..d96089d492 100644 --- a/sysdeps/generic/ldconfig.h +++ b/sysdeps/generic/ldconfig.h @@ -19,6 +19,8 @@ #ifndef _LDCONFIG_H #define _LDCONFIG_H +#include <stdint.h> + #define FLAG_ANY -1 #define FLAG_TYPE_MASK 0x00ff #define FLAG_LIBC4 0x0000 diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h index 41684f3837..9455f184f6 100644 --- a/sysdeps/generic/ldsodefs.h +++ b/sysdeps/generic/ldsodefs.h @@ -26,6 +26,7 @@ #define __need_NULL #include <stddef.h> #include <string.h> +#include <stdint.h> #include <elf.h> #include <dlfcn.h> diff --git a/sysdeps/generic/memusage.h b/sysdeps/generic/memusage.h index 849f6e6bf0..631287827a 100644 --- a/sysdeps/generic/memusage.h +++ b/sysdeps/generic/memusage.h @@ -18,6 +18,7 @@ #include <limits.h> #include <atomic.h> +#include <stdint.h> #ifndef GETSP # warning "GETSP is not defined for this architecture." |