diff options
author | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 02:42:17 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2014-01-17 02:42:17 +0100 |
commit | 99df369d0340caac145d57f700d830147ff18b87 (patch) | |
tree | bbf90abaeb39cc6bef79a96b48ac9e82f6687fbb /poly1305.c | |
parent | - (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H. (diff) | |
download | openssh-99df369d0340caac145d57f700d830147ff18b87.tar.xz openssh-99df369d0340caac145d57f700d830147ff18b87.zip |
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
Diffstat (limited to '')
-rw-r--r-- | poly1305.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/poly1305.c b/poly1305.c index a5eada498..6fd1fc8cd 100644 --- a/poly1305.c +++ b/poly1305.c @@ -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" |