aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_mem.h
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-29 22:01:18 -0400
committeriamcheeseman <[email protected]>2026-05-29 22:01:18 -0400
commit840b5c151fcd207e904fb2a6d3bb3fd658ef6209 (patch)
treed06c90490f087b2c5ad8a95b292ddfa315f5b70f /teensy/teensy_mem.h
parenta1429f81e3cfb6cefd44ba412d3d5e8f7bc97a71 (diff)
remove the memory tracker in debug mode for asan
Diffstat (limited to 'teensy/teensy_mem.h')
-rw-r--r--teensy/teensy_mem.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/teensy/teensy_mem.h b/teensy/teensy_mem.h
index 8639479..133869f 100644
--- a/teensy/teensy_mem.h
+++ b/teensy/teensy_mem.h
@@ -5,9 +5,6 @@
#define ty_new(T) (ty_alloc(sizeof(T)))
-// NOTE: Overrides GLFW allocator
-void ty_init_mem(void);
-void ty_deinit_mem(void);
void ty_free_temp_allocs(void);
// Temp allocation. Freed at the end of every frame. Do NOT realloc.
void *ty_talloc(size_t size);
@@ -20,9 +17,4 @@ void *ty_alloc(size_t size);
void *ty_realloc(void *ptr, size_t new_size);
void ty_free(void *ptr);
-// Returns -1 in release builds.
-int ty_alloc_count(void);
-// Returns 0 in release builds.
-size_t ty_alloc_size(void);
-
#endif // TEENSY_MEM_H_