example: Add missing stdlib.h.
authorAndreas Schneider <asn@cryptomilk.org>
Wed, 24 Jul 2013 08:08:44 +0000 (10:08 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Wed, 24 Jul 2013 08:08:44 +0000 (10:08 +0200)
This fixes a build error on Windows.

example/allocate_module.c

index c6df8c6..295e10e 100644 (file)
@@ -20,6 +20,7 @@
 #include <malloc.h>
 #endif
 #include <sys/types.h>
+#include <stdlib.h>
 
 #if UNIT_TESTING
 extern void* _test_malloc(const size_t size, const char* file, const int line);