- Moved everything about.

This commit is contained in:
ccremers
2004-04-23 10:58:43 +00:00
parent ca5202dc0c
commit 0f4e6a5aba
60 changed files with 10596 additions and 0 deletions

14
src/memory.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef MEMORY
#define MEMORY
#include "string.h"
#include "debug.h"
#include <malloc.h>
void memInit ();
void memDone ();
#define memAlloc(t) malloc(t)
#define memFree(p,t) free(p)
#define memRealloc(p,t) realloc(p,t);
#endif