- Moved everything about.
This commit is contained in:
14
src/memory.h
Normal file
14
src/memory.h
Normal 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
|
||||
Reference in New Issue
Block a user