Files
Jedi-Academy/tools/ModView/common_headers.h
2013-04-04 14:32:05 -07:00

24 lines
457 B
C

// Filename:- common_headers.h
//
// Rick's GP2 file (which is shared across projects) wanted a header file called this, so...
//
#ifndef COMMON_HEADERS_H
#define COMMON_HEADERS_H
#include <string.h>
#include <malloc.h>
#define trap_Z_Malloc(_size, _tag) malloc(_size) // dunno if GP2 need calloc or malloc, so...
#define trap_Z_Free(_mem) free(_mem)
//#define TAG_GP2 0
#endif // #ifndef COMMON_HEADERS_H
/////////////////// eof //////////////