Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
sqmem.cpp
00001 /* 00002 see copyright notice in squirrel.h 00003 */ 00004 #include "sqpcheader.h" 00005 void *sq_vm_malloc(SQUnsignedInteger size){ return malloc(size); } 00006 00007 void *sq_vm_realloc(void *p, SQUnsignedInteger oldsize, SQUnsignedInteger size){ return realloc(p, size); } 00008 00009 void sq_vm_free(void *p, SQUnsignedInteger size){ free(p); }
Generated on Tue Jul 12 2022 21:35:49 by
1.7.2