summaryrefslogtreecommitdiff
path: root/xmss_commons.c
diff options
context:
space:
mode:
Diffstat (limited to 'xmss_commons.c')
-rw-r--r--xmss_commons.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/xmss_commons.c b/xmss_commons.c
index 51171af91..0752f29b2 100644
--- a/xmss_commons.c
+++ b/xmss_commons.c
@@ -5,6 +5,8 @@ Joost Rijneveld
5Public domain. 5Public domain.
6*/ 6*/
7 7
8#include "includes.h"
9
8#include "xmss_commons.h" 10#include "xmss_commons.h"
9#include <stdlib.h> 11#include <stdlib.h>
10#include <stdio.h> 12#include <stdio.h>
@@ -24,4 +26,4 @@ void hexdump(const unsigned char *a, size_t len)
24 size_t i; 26 size_t i;
25 for (i = 0; i < len; i++) 27 for (i = 0; i < len; i++)
26 printf("%02x", a[i]); 28 printf("%02x", a[i]);
27} \ No newline at end of file 29}