aboutsummaryrefslogtreecommitdiffstats
path: root/src/heap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heap.c')
-rw-r--r--src/heap.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/heap.c b/src/heap.c
index c2293fa..33f9fb4 100644
--- a/src/heap.c
+++ b/src/heap.c
@@ -22,11 +22,6 @@
#define HEAP_ALIGN 4
-typedef struct {
- uint32_t size;
- void *next;
-} __attribute__ ((packed)) alloc_t;
-
static alloc_t *free_blocks;
static void *heap_end;
uint32_t heap_used;