summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/malloc.c
diff options
context:
space:
mode:
authortholo <tholo@openbsd.org>1996-08-20 17:56:52 +0000
committertholo <tholo@openbsd.org>1996-08-20 17:56:52 +0000
commit4211cc3dad16fb3c4a36dee678a0c323d41b29d6 (patch)
tree8350dcdebf2e6f835d70f8a0e655e4b082c39815 /lib/libc/stdlib/malloc.c
parentCleaner. (diff)
downloadwireguard-openbsd-4211cc3dad16fb3c4a36dee678a0c323d41b29d6.tar.xz
wireguard-openbsd-4211cc3dad16fb3c4a36dee678a0c323d41b29d6.zip
Make the binding cfree() -> free() weak if possible
Diffstat (limited to 'lib/libc/stdlib/malloc.c')
-rw-r--r--lib/libc/stdlib/malloc.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c
index 47059a8388c..a210c3f3189 100644
--- a/lib/libc/stdlib/malloc.c
+++ b/lib/libc/stdlib/malloc.c
@@ -8,7 +8,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: malloc.c,v 1.6 1996/08/20 17:30:49 downsj Exp $";
+static char rcsid[] = "$OpenBSD: malloc.c,v 1.7 1996/08/20 17:56:52 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -1260,10 +1260,17 @@ free(ptr)
}
#ifdef CFREE_STUB
+
+#ifdef __indr_reference
+__indr_reference(free, cfree);
+#else /* __indr_reference */
+
void
-cfree(ptr)
- void *ptr;
+cfree(p)
+ void *p;
{
- free(ptr);
+ free(p);
}
-#endif
+#endif /* not __indr_reference */
+
+#endif /* CFREE_STUB */