summaryrefslogtreecommitdiff
path: root/poly1305.c
diff options
context:
space:
mode:
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 a5eada498..6fd1fc8cd 100644
--- a/poly1305.c
+++ b/poly1305.c
@@ -8,7 +8,9 @@
8#include "includes.h" 8#include "includes.h"
9 9
10#include <sys/types.h> 10#include <sys/types.h>
11#include <stdint.h> 11#ifdef HAVE_STDINT_H
12# include <stdint.h>
13#endif
12 14
13#include "poly1305.h" 15#include "poly1305.h"
14 16