aboutsummaryrefslogtreecommitdiff
path: root/include/alloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/alloc.h')
-rw-r--r--include/alloc.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/alloc.h b/include/alloc.h
deleted file mode 100644
index 6809287..0000000
--- a/include/alloc.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef AMALGAM_ALLOC_H
-#define AMALGAM_ALLOC_H
-
-#include "types.h"
-#include "misc.h"
-
-#define ALLOC_OK 0
-#define ALLOC_FAIL -1
-
-CHECK_RESULT int am_malloc(usize size, void **mem);
-CHECK_RESULT int am_realloc(void *mem, usize new_size, void **new_mem);
-void am_free(void *mem);
-
-#endif