summaryrefslogtreecommitdiff
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 1c879640c..e90b294fb 100644
--- a/hmac.c
+++ b/hmac.c
@@ -18,6 +18,8 @@
18#include "includes.h" 18#include "includes.h"
19 19
20#include <sys/types.h> 20#include <sys/types.h>
21
22#include <stdlib.h>
21#include <string.h> 23#include <string.h>
22 24
23#include "sshbuf.h" 25#include "sshbuf.h"