summaryrefslogtreecommitdiff
path: root/fuzz/driver.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-06-05 20:51:04 +0200
committerKurt Roeckx <kurt@roeckx.be>2016-06-11 16:43:49 +0200
commit0a3206539a41f48b24d107449779cdbf5104c1fc (patch)
treeefb2bee69a66a593d0e11121b474b1c5a45bf526 /fuzz/driver.c
parent325cfa8531153641ca0ade876fd29ef482e973a8 (diff)
downloadopenssl-new-0a3206539a41f48b24d107449779cdbf5104c1fc.tar.gz
include stdlib for malloc() and free()
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1174
Diffstat (limited to 'fuzz/driver.c')
-rw-r--r--fuzz/driver.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fuzz/driver.c b/fuzz/driver.c
index de515748ce..c530fedc84 100644
--- a/fuzz/driver.c
+++ b/fuzz/driver.c
@@ -9,6 +9,7 @@
*/
#include <stdint.h>
#include <unistd.h>
+#include <stdlib.h>
#include <openssl/opensslconf.h>
#include "fuzzer.h"