diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | poly1305.c | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -7,6 +7,7 @@ - (dtucker) [loginrec.c] Cast to the types specfied in the format specification to prevent warnings. - (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. + - (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. 20140118 - (djm) OpenBSD CVS Sync @@ -8,7 +8,9 @@ #include "includes.h" #include <sys/types.h> -#include <stdint.h> +#ifdef HAVE_STDINT_H +# include <stdint.h> +#endif #include "poly1305.h" |