aboutsummaryrefslogtreecommitdiff
path: root/interpreter/mem.h
diff options
context:
space:
mode:
authorCamil Staps2016-08-25 20:29:50 +0200
committerCamil Staps2016-08-25 20:29:50 +0200
commit821939c6a6eb5761708146783ebd562422c2a7f7 (patch)
treedd26b29c65431801f4ca45d6952b7806534f9c8c /interpreter/mem.h
parentRemove unnecessary includes (diff)
pedantic
Diffstat (limited to 'interpreter/mem.h')
-rw-r--r--interpreter/mem.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/interpreter/mem.h b/interpreter/mem.h
new file mode 100644
index 0000000..0399cef
--- /dev/null
+++ b/interpreter/mem.h
@@ -0,0 +1,9 @@
+#ifndef _H_MEM
+#define _H_MEM
+
+#include <stdlib.h>
+
+void* my_calloc(size_t num, size_t size);
+void my_free(void* ptr);
+
+#endif