summaryrefslogtreecommitdiff
path: root/poly1305.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2014-01-17 12:42:17 +1100
committerDarren Tucker <dtucker@zip.com.au>2014-01-17 12:42:17 +1100
commit99df369d0340caac145d57f700d830147ff18b87 (patch)
treebbf90abaeb39cc6bef79a96b48ac9e82f6687fbb /poly1305.c
parentac413b62ea1957e80c711acbe0c11b908273fc01 (diff)
downloadopenssh-git-99df369d0340caac145d57f700d830147ff18b87.tar.gz
- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
Diffstat (limited to 'poly1305.c')
-rw-r--r--poly1305.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/poly1305.c b/poly1305.c
index a5eada49..6fd1fc8c 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"