fixed warnings in squirrel
[supertux.git] / src / squirrel / squirrel / sqmem.cpp
1 /*
2         see copyright notice in squirrel.h
3 */
4 #include "sqpcheader.h"
5 void *sq_vm_malloc(unsigned int size){  return malloc(size); }
6
7 void *sq_vm_realloc(void *p, unsigned int , unsigned int size){ return realloc(p, size); }
8
9 void sq_vm_free(void *p, unsigned int ){        free(p); }