diff options
author | 2003-07-18 23:05:13 +0000 | |
---|---|---|
committer | 2003-07-18 23:05:13 +0000 | |
commit | 26fda0efb9ec24d261dd2a0d7555cf97a82c0069 (patch) | |
tree | 25da477e473613aad2841d01d2c8afafcd65d61f /lib/libc/stdlib | |
parent | caddr_t -> void *. ok millert@ tdeval@ (diff) | |
download | wireguard-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.c | 5 |
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); |