removed high-level memory allocation functions from q.c to rfxswf.c.
[swftools.git] / lib / q.h
diff --git a/lib/q.h b/lib/q.h
index 064949a..0e9d602 100644 (file)
--- a/lib/q.h
+++ b/lib/q.h
@@ -128,14 +128,6 @@ void** heap_flatten(heap_t*h);
 
 char* strdup_n(const char*str, int size);
 
-void* qmalloc_internal(int len);
-void* qrealloc_internal(void*old, int len);
-void qfree_internal(void*old);
-
-#define qmalloc(len) qmalloc_internal(len)
-#define qrealloc(old, len) qmalloc_internal(old, len)
-#define qfree(old) qmalloc_internal(old)
-
 #ifdef __cplusplus
 }
 #endif