/* see copyright notice in squirrel.h */ //#include "sqpcheader.h" // TODO: commented because we need to hook up globals '14D4F3900' and '14D4F38F8', which is used for // the global memory management of the squirrel implementation in this game //void *sq_vm_malloc(SQUnsignedInteger size){ return malloc(size); } //void *sq_vm_realloc(void *p, SQUnsignedInteger oldsize, SQUnsignedInteger size){ return realloc(p, size); } //void sq_vm_free(void *p, SQUnsignedInteger size){ free(p); }