about summary refs log tree commit diff
path: root/src/engine/e_memheap.h
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-01-20 09:53:15 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-01-20 09:53:15 +0000
commitf63bcc8673ddab0520faf34276dfa9141c609102 (patch)
treefe70adf542a1aa2844ba571d5e6c0bb96446aaf6 /src/engine/e_memheap.h
parent2d4824efd5f13f14fd6dd94b1bc0dc4403519e43 (diff)
downloadzcatch-f63bcc8673ddab0520faf34276dfa9141c609102.tar.gz
zcatch-f63bcc8673ddab0520faf34276dfa9141c609102.zip
fixed small errors in memheap
Diffstat (limited to 'src/engine/e_memheap.h')
-rw-r--r--src/engine/e_memheap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/e_memheap.h b/src/engine/e_memheap.h
index 83082046..af3c0b29 100644
--- a/src/engine/e_memheap.h
+++ b/src/engine/e_memheap.h
@@ -3,4 +3,4 @@
 typedef struct HEAP_t HEAP;
 HEAP *memheap_create();
 void memheap_destroy(HEAP *heap);
-void *memheap_allocate(HEAP *heap, int size);
+void *memheap_allocate(HEAP *heap, unsigned int size);