pike.git
/
src
/
memory.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/memory.c:1:
/*\ ||| This file a part of uLPC, and is copyright by Fredrik Hubinette ||| uLPC is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/
-
#include <stdlib.h>
+
#include "global.h" #include "memory.h" #include "error.h" char *xalloc(SIZE_T size) { char *ret; if(!size) return 0; ret=(char *)malloc(size);