From 046f8a7199a32cebadea4d506515e457387ae799 Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Fri, 28 Nov 2008 18:36:04 +0100 Subject: [PATCH] To use free you should include stdlib.h rather than malloc.h according to man page of free() and various C reference websites. --- util-src/encodings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util-src/encodings.c b/util-src/encodings.c index ac24ebcf..13706a89 100644 --- a/util-src/encodings.c +++ b/util-src/encodings.c @@ -7,7 +7,7 @@ #define _CRT_SECURE_NO_DEPRECATE #include -#include +#include #include "lua.h" #include "lauxlib.h" -- 2.30.2