From 51b52db0c7a551df5daf3ed5cea7d3eddf84d5f1 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Mon, 21 Sep 2015 17:35:04 -0700 Subject: [PATCH] Add missing include The include of stdlib.h was missing from memory.c resulting in a compiler warning when using the GnuTLS backend. --- src/memory.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/memory.c b/src/memory.c index 8a5f683..3d52278 100644 --- a/src/memory.c +++ b/src/memory.c @@ -30,6 +30,7 @@ */ #include #include +#include #include "log.h" #include "memory.h" -- 2.30.2