aboutsummaryrefslogtreecommitdiff
path: root/GlobalArena.h
diff options
context:
space:
mode:
Diffstat (limited to 'GlobalArena.h')
-rw-r--r--GlobalArena.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/GlobalArena.h b/GlobalArena.h
index 219e743..8c2b524 100644
--- a/GlobalArena.h
+++ b/GlobalArena.h
@@ -7,11 +7,9 @@
// Global bump arena
extern BumpArena g_arena;
-void* GBalloc(usize size);
-int GBresizeable(void* ptr);
-Result GBresize(usize size);
-Result GBfree();
-
-Array Array_Gnew(usize element_size, usize length);
+void* BG_alloc(usize size);
+int BG_resizeable(void* ptr);
+Result BG_resize(usize size);
+Result BG_free();
#endif /* _GLOBAL_ARENA */