92c59963f8
git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6
10 lines
304 B
C++
10 lines
304 B
C++
/*
|
|
see copyright notice in squirrel.h
|
|
*/
|
|
#include "sqpcheader.h"
|
|
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); }
|