diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 12:42:17 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 12:42:17 +1100 |
commit | 99df369d0340caac145d57f700d830147ff18b87 (patch) | |
tree | bbf90abaeb39cc6bef79a96b48ac9e82f6687fbb | |
parent | ac413b62ea1957e80c711acbe0c11b908273fc01 (diff) |
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | poly1305.c | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -7,6 +7,7 @@ | |||
7 | - (dtucker) [loginrec.c] Cast to the types specfied in the format | 7 | - (dtucker) [loginrec.c] Cast to the types specfied in the format |
8 | specification to prevent warnings. | 8 | specification to prevent warnings. |
9 | - (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. | 9 | - (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. |
10 | - (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. | ||
10 | 11 | ||
11 | 20140118 | 12 | 20140118 |
12 | - (djm) OpenBSD CVS Sync | 13 | - (djm) OpenBSD CVS Sync |
diff --git a/poly1305.c b/poly1305.c index a5eada498..6fd1fc8cd 100644 --- a/poly1305.c +++ b/poly1305.c | |||
@@ -8,7 +8,9 @@ | |||
8 | #include "includes.h" | 8 | #include "includes.h" |
9 | 9 | ||
10 | #include <sys/types.h> | 10 | #include <sys/types.h> |
11 | #include <stdint.h> | 11 | #ifdef HAVE_STDINT_H |
12 | # include <stdint.h> | ||
13 | #endif | ||
12 | 14 | ||
13 | #include "poly1305.h" | 15 | #include "poly1305.h" |
14 | 16 | ||