blob: 89686020a4369c2aa7acb2b911db53f23e85b40b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-aa,v 1.1.1.1 2005/08/05 22:00:49 reinoud Exp $
--- include/util.h.orig 2004-04-16 08:41:48.000000000 +0200
+++ include/util.h
@@ -28,9 +28,11 @@ int hexdecode (unsigned char *digest, in
typedef void (*exitfn_ptr) (int,void*);
int on_exit( exitfn_ptr exitfn, void* data) ;
#endif
+#if 0
#define malloc(s) use_btmalloc_instead
#define calloc(n,s) use_btcalloc_instead
#define realloc(p,s) use_btrealloc_instead
#define free(p) use_btfree_instead
+#endif
#endif
|