aboutsummaryrefslogtreecommitdiff
path: root/GlobalArena.h
diff options
context:
space:
mode:
Diffstat (limited to 'GlobalArena.h')
-rw-r--r--GlobalArena.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/GlobalArena.h b/GlobalArena.h
deleted file mode 100644
index 8c2b524..0000000
--- a/GlobalArena.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#ifndef _GLOBAL_ARENA
-#define _GLOBAL_ARENA
-
-#include "BumpAlloc.h"
-#include "Array.h"
-
-// Global bump arena
-extern BumpArena g_arena;
-
-void* BG_alloc(usize size);
-int BG_resizeable(void* ptr);
-Result BG_resize(usize size);
-Result BG_free();
-
-#endif /* _GLOBAL_ARENA */