summaryrefslogtreecommitdiffstats
path: root/hmac.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-07-23 22:11:50 +1000
committerDarren Tucker <dtucker@dtucker.net>2019-07-23 22:11:50 +1000
commit2ea60312e1c08dea88982fec68244f89a40912ff (patch)
tree75b84f6c6aa2e1a419a6a95367358b43495cd634 /hmac.c
parent11cba2a4523fda447e2554ea457484655bedc831 (diff)
Include stdlib.h for free() and calloc().
Diffstat (limited to 'hmac.c')
-rw-r--r--hmac.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hmac.c b/hmac.c
index 1c879640..e90b294f 100644
--- a/hmac.c
+++ b/hmac.c
@@ -18,6 +18,8 @@
#include "includes.h"
#include <sys/types.h>
+
+#include <stdlib.h>
#include <string.h>
#include "sshbuf.h"