diff options
author | Damien Miller <djm@mindrot.org> | 2018-02-26 12:18:14 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2018-02-26 12:18:14 +1100 |
commit | f885474137df4b89498c0b8834c2ac72c47aa4bd (patch) | |
tree | d3015cda2edbafbfc270ab6ff35007dd03c0d8dd /xmss_commons.c | |
parent | 612faa34c72e421cdc9e63f624526bae62d557cc (diff) |
XMSS-related files get includes.h
Diffstat (limited to 'xmss_commons.c')
-rw-r--r-- | xmss_commons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/xmss_commons.c b/xmss_commons.c index 51171af9..0752f29b 100644 --- a/xmss_commons.c +++ b/xmss_commons.c @@ -5,6 +5,8 @@ Joost Rijneveld Public domain. */ +#include "includes.h" + #include "xmss_commons.h" #include <stdlib.h> #include <stdio.h> @@ -24,4 +26,4 @@ void hexdump(const unsigned char *a, size_t len) size_t i; for (i = 0; i < len; i++) printf("%02x", a[i]); -}
\ No newline at end of file +} |