From: Felix Morgner Date: Tue, 22 Sep 2015 00:35:04 +0000 (-0700) Subject: Add missing include X-Git-Url: http://git.code-monkey.de/?a=commitdiff_plain;ds=sidebyside;h=51b52db0c7a551df5daf3ed5cea7d3eddf84d5f1;p=umurmur.git Add missing include The include of stdlib.h was missing from memory.c resulting in a compiler warning when using the GnuTLS backend. --- 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"