aboutsummaryrefslogtreecommitdiffstats
path: root/src/heap.c
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-04-08 17:29:30 -0400
committerClyne Sullivan <tullivan99@gmail.com>2018-04-08 17:29:30 -0400
commit0726b60a6e32760fbadd1cdd39362c9c7a0fd9cc (patch)
tree38d594dd9c259f13fc6d867da349cb96a8c25158 /src/heap.c
parent7eb572702ca012a89370cc94a297eeb346a8dee9 (diff)
file loading, switching, good!
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;