* Fix warning about implicit declaration of memset

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@2176 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2007-07-24 15:08:29 +00:00
parent 2b00b2e4c1
commit 763d707f02
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@
#ifdef EDITORWORLD
#include <malloc.h>
#include <string.h>
#define MALLOC(a) malloc(a)
#define FREE(a) free(a); a = NULL;