blob: da14dc67997738b70df4955787b612d2df586ae3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-alloc.c,v 1.1 2013/05/23 14:57:32 joerg Exp $
--- alloc.c.orig 1999-11-09 07:23:46.000000000 +0000
+++ alloc.c
@@ -1,7 +1,6 @@
#include "alloc.h"
#include "error.h"
-extern char *malloc();
-extern void free();
+#include <stdlib.h>
#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
#define SPACE 4096 /* must be multiple of ALIGNMENT */
|