From: Andreas Schneider Date: Wed, 24 Jul 2013 08:08:44 +0000 (+0200) Subject: example: Add missing stdlib.h. X-Git-Tag: cmocka-1.1.1~201 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a4e9117089ca3fed8f248301481cb86d3b4f1e7;p=platform%2Fupstream%2Fcmocka.git example: Add missing stdlib.h. This fixes a build error on Windows. --- diff --git a/example/allocate_module.c b/example/allocate_module.c index c6df8c6..295e10e 100644 --- a/example/allocate_module.c +++ b/example/allocate_module.c @@ -20,6 +20,7 @@ #include #endif #include +#include #if UNIT_TESTING extern void* _test_malloc(const size_t size, const char* file, const int line);