diff options
author | david <> | 2003-07-18 23:05:13 +0000 |
---|---|---|
committer | david <> | 2003-07-18 23:05:13 +0000 |
commit | e36d49a61cc0658f944df0884567975689a8ba57 (patch) | |
tree | bf13755e076d5e814a6cc6d35c35fd05193fe23d /src | |
parent | 532c18f1f3c2b718b6845205aa5dc0ea3c873efc (diff) | |
download | openbsd-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.c | 5 |
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) |
29 | static char rcsid[] = "$OpenBSD: cfree.c,v 1.2 2003/06/04 16:35:23 deraadt Exp $"; | 29 | static 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); |