aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bumpptr_alloc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bumpptr_alloc.c b/src/bumpptr_alloc.c
index fc8f77e..9bd34a6 100644
--- a/src/bumpptr_alloc.c
+++ b/src/bumpptr_alloc.c
@@ -16,7 +16,6 @@ __thread void* mem_start = NULL;
__thread void* mem_end = NULL;
__thread uintptr_t ptr = 0;
-__thread uintptr_t last_freed_ptr = 0;
void* malloc(size_t size) {
if(mem_start == NULL) {