- (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
diff --git a/poly1305.c b/poly1305.c
index a5eada4..6fd1fc8 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"