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-01 10:46:34 -0500 |
commit | 03eb46d4be01d389ccb88778047e6639ae132e0c (patch) | |
tree | f559059f67c16040c05ee1f6c67c290bc5bcb67c /libidn | |
parent | 0695940b8ab4b7e69492e8ea071d19fc17dda092 (diff) | |
download | glibc-rsa/stdint_noheaders.tar.gz glibc-rsa/stdint_noheaders.tar.xz glibc-rsa/stdint_noheaders.zip |
Add #include <stdint.h> for uint[32|64]_t usage (except installed headers). rsa/stdint_noheaders
Diffstat (limited to 'libidn')
-rw-r--r-- | libidn/ChangeLog | 7 | ||||
-rw-r--r-- | libidn/idna.c | 1 | ||||
-rw-r--r-- | libidn/nfkc.c | 1 | ||||
-rw-r--r-- | libidn/stringprep.c | 1 |
4 files changed, 10 insertions, 0 deletions
diff --git a/libidn/ChangeLog b/libidn/ChangeLog index 10b19a6ebd..0ae0fb66f0 100644 --- a/libidn/ChangeLog +++ b/libidn/ChangeLog @@ -1,3 +1,10 @@ +2013-05-01 Ryan S. Arnold <rsa@linux.vnet.ibm.com> + + * idna.c: Add missing #include <stdint.h> due to uint64_t or uint32_t + usage. + * nfkc.c: Likewise. + * stringprep.c: Likewise. + 2013-01-02 Joseph Myers <joseph@codesourcery.com> * All files with FSF copyright notices: Update copyright dates diff --git a/libidn/idna.c b/libidn/idna.c index daa1a87778..7a15a25b21 100644 --- a/libidn/idna.c +++ b/libidn/idna.c @@ -25,6 +25,7 @@ #include <string.h> #include <stringprep.h> #include <punycode.h> +#include <stdint.h> #include "idna.h" diff --git a/libidn/nfkc.c b/libidn/nfkc.c index f144d7bd7e..6d4a88b63b 100644 --- a/libidn/nfkc.c +++ b/libidn/nfkc.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string.h> +#include <stdint.h> #include "stringprep.h" diff --git a/libidn/stringprep.c b/libidn/stringprep.c index 201489f36a..d109a71fea 100644 --- a/libidn/stringprep.c +++ b/libidn/stringprep.c @@ -23,6 +23,7 @@ #include <stdlib.h> #include <string.h> +#include <stdint.h> #include "stringprep.h" |