summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authordavid <david@openbsd.org>2003-07-18 23:05:13 +0000
committerdavid <david@openbsd.org>2003-07-18 23:05:13 +0000
commit26fda0efb9ec24d261dd2a0d7555cf97a82c0069 (patch)
tree25da477e473613aad2841d01d2c8afafcd65d61f /lib/libc/stdlib
parentcaddr_t -> void *. ok millert@ tdeval@ (diff)
downloadwireguard-openbsd-26fda0efb9ec24d261dd2a0d7555cf97a82c0069.tar.xz
wireguard-openbsd-26fda0efb9ec24d261dd2a0d7555cf97a82c0069.zip
add missing includes
ok tedu@
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/cfree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/stdlib/cfree.c b/lib/libc/stdlib/cfree.c
index 078e9de23f2..ecbc11d6c30 100644
--- a/lib/libc/stdlib/cfree.c
+++ b/lib/libc/stdlib/cfree.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cfree.c,v 1.2 2003/06/04 16:35:23 deraadt Exp $ */
+/* $OpenBSD: cfree.c,v 1.3 2003/07/18 23:05:13 david Exp $ */
/*
* Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
@@ -26,10 +26,11 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: cfree.c,v 1.2 2003/06/04 16:35:23 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: cfree.c,v 1.3 2003/07/18 23:05:13 david Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/cdefs.h>
+#include <stdlib.h>
#ifdef __indr_reference
__indr_reference(free, cfree);