diff options
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" |