Back to home page

Enduro/X

 
 

    


0001 /*

0002     see copyright notice in pscript.h

0003 */
0004 #include "pspcheader.h"
0005 #ifndef PS_EXCLUDE_DEFAULT_MEMFUNCTIONS
0006 void *ps_vm_malloc(PSUnsignedInteger size){ return malloc(size); }
0007 
0008 void *ps_vm_realloc(void *p, PSUnsignedInteger PS_UNUSED_ARG(oldsize), PSUnsignedInteger size){ return realloc(p, size); }
0009 
0010 void ps_vm_free(void *p, PSUnsignedInteger PS_UNUSED_ARG(size)){ free(p); }
0011 #endif