summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordavid <>2003-07-18 23:05:13 +0000
committerdavid <>2003-07-18 23:05:13 +0000
commite36d49a61cc0658f944df0884567975689a8ba57 (patch)
treebf13755e076d5e814a6cc6d35c35fd05193fe23d /src
parent532c18f1f3c2b718b6845205aa5dc0ea3c873efc (diff)
downloadopenbsd-e36d49a61cc0658f944df0884567975689a8ba57.tar.gz
openbsd-e36d49a61cc0658f944df0884567975689a8ba57.tar.bz2
openbsd-e36d49a61cc0658f944df0884567975689a8ba57.zip
add missing includes
ok tedu@
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/stdlib/cfree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/cfree.c b/src/lib/libc/stdlib/cfree.c
index 078e9de23f..ecbc11d6c3 100644
--- a/src/lib/libc/stdlib/cfree.c
+++ b/src/lib/libc/stdlib/cfree.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cfree.c,v 1.2 2003/06/04 16:35:23 deraadt Exp $ */ 1/* $OpenBSD: cfree.c,v 1.3 2003/07/18 23:05:13 david Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> 4 * Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com>
@@ -26,10 +26,11 @@
26 */ 26 */
27 27
28#if defined(LIBC_SCCS) && !defined(lint) 28#if defined(LIBC_SCCS) && !defined(lint)
29static char rcsid[] = "$OpenBSD: cfree.c,v 1.2 2003/06/04 16:35:23 deraadt Exp $"; 29static char rcsid[] = "$OpenBSD: cfree.c,v 1.3 2003/07/18 23:05:13 david Exp $";
30#endif /* LIBC_SCCS and not lint */ 30#endif /* LIBC_SCCS and not lint */
31 31
32#include <sys/cdefs.h> 32#include <sys/cdefs.h>
33#include <stdlib.h>
33 34
34#ifdef __indr_reference 35#ifdef __indr_reference
35__indr_reference(free, cfree); 36__indr_reference(free, cfree);