summaryrefslogtreecommitdiffstats
path: root/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'alloc.c')
-rw-r--r--alloc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/alloc.c b/alloc.c
index c661453..48a109b 100644
--- a/alloc.c
+++ b/alloc.c
@@ -1,7 +1,6 @@
1#include "alloc.h" 1#include "alloc.h"
2#include "error.h" 2#include "error.h"
3extern char *malloc(); 3#include <stdlib.h>
4extern void free();
5 4
6#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */ 5#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
7#define SPACE 4096 /* must be multiple of ALIGNMENT */ 6#define SPACE 4096 /* must be multiple of ALIGNMENT */