fixed warnings in squirrel
[supertux.git] / src / squirrel / squirrel / sqmem.cpp
index f85c887..2a2f3f7 100644 (file)
@@ -1,9 +1,9 @@
-/*\r
-       see copyright notice in squirrel.h\r
-*/\r
-#include "sqpcheader.h"\r
-void *sq_vm_malloc(unsigned int size){ return malloc(size); }\r
-\r
-void *sq_vm_realloc(void *p, unsigned int oldsize, unsigned int size){ return realloc(p, size); }\r
-\r
-void sq_vm_free(void *p, unsigned int size){   free(p); }\r
+/*
+       see copyright notice in squirrel.h
+*/
+#include "sqpcheader.h"
+void *sq_vm_malloc(unsigned int size){ return malloc(size); }
+
+void *sq_vm_realloc(void *p, unsigned int , unsigned int size){ return realloc(p, size); }
+
+void sq_vm_free(void *p, unsigned int ){       free(p); }