summaryrefslogtreecommitdiff
path: root/xmss_wots.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2018-02-26 17:42:56 +1100
committerDarren Tucker <dtucker@dtucker.net>2018-02-26 17:42:56 +1100
commitc7ef4a399155e1621a532cc5e08e6fa773658dd4 (patch)
treea60a3cae4b79b287b6b6c00e06f3ecd6c4dfaef2 /xmss_wots.c
parentac53ce46cf8165cbda7f57ee045f9f32e1e92b31 (diff)
Wrap <stdint.h> in #ifdef HAVE_STDINT_H.
Diffstat (limited to 'xmss_wots.c')
-rw-r--r--xmss_wots.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_wots.c b/xmss_wots.c
index 4120acf17..9f1900fcb 100644
--- a/xmss_wots.c
+++ b/xmss_wots.c
@@ -8,7 +8,9 @@ Public domain.
8#include "includes.h" 8#include "includes.h"
9 9
10#include <stdlib.h> 10#include <stdlib.h>
11#ifdef HAVE_STDINT_H
11#include <stdint.h> 12#include <stdint.h>
13#endif
12#include <limits.h> 14#include <limits.h>
13#include "xmss_commons.h" 15#include "xmss_commons.h"
14#include "xmss_hash.h" 16#include "xmss_hash.h"