To use free you should include stdlib.h rather than malloc.h according to man page of free() and various C reference websites.

This commit is contained in:
Tobias Markmann 2008-11-28 18:36:04 +01:00
parent 8e2b0deb94
commit 0df2b3f0c5

View file

@ -7,7 +7,7 @@
#define _CRT_SECURE_NO_DEPRECATE
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include "lua.h"
#include "lauxlib.h"