summaryrefslogtreecommitdiff
path: root/xmss_hash.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_hash.c
parentac53ce46cf8165cbda7f57ee045f9f32e1e92b31 (diff)
Wrap <stdint.h> in #ifdef HAVE_STDINT_H.
Diffstat (limited to 'xmss_hash.c')
-rw-r--r--xmss_hash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xmss_hash.c b/xmss_hash.c
index 9c42c4f40..c4cac47fd 100644
--- a/xmss_hash.c
+++ b/xmss_hash.c
@@ -12,7 +12,9 @@ Public domain.
12#include "xmss_hash.h" 12#include "xmss_hash.h"
13 13
14#include <stddef.h> 14#include <stddef.h>
15#ifdef HAVE_STDINT_H
15#include <stdint.h> 16#include <stdint.h>
17#endif
16#include <stdio.h> 18#include <stdio.h>
17#include <string.h> 19#include <string.h>
18#include <openssl/sha.h> 20#include <openssl/sha.h>