diff options
Diffstat (limited to 'src/lib/libc/string/bzero.c')
-rw-r--r-- | src/lib/libc/string/bzero.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libc/string/bzero.c b/src/lib/libc/string/bzero.c index 4865e396ef..7d89de23f3 100644 --- a/src/lib/libc/string/bzero.c +++ b/src/lib/libc/string/bzero.c | |||
@@ -33,10 +33,14 @@ | |||
33 | 33 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)bzero.c 5.7 (Berkeley) 2/24/91";*/ | 35 | /*static char *sccsid = "from: @(#)bzero.c 5.7 (Berkeley) 2/24/91";*/ |
36 | static char *rcsid = "$Id: bzero.c,v 1.1.1.1 1995/10/18 08:42:21 deraadt Exp $"; | 36 | static char *rcsid = "$Id: bzero.c,v 1.2 1996/05/01 12:57:40 deraadt Exp $"; |
37 | #endif /* LIBC_SCCS and not lint */ | 37 | #endif /* LIBC_SCCS and not lint */ |
38 | 38 | ||
39 | #ifndef _KERNEL | ||
39 | #include <string.h> | 40 | #include <string.h> |
41 | #else | ||
42 | #include <lib/libkern/libkern.h> | ||
43 | #endif | ||
40 | 44 | ||
41 | /* | 45 | /* |
42 | * bzero -- vax movc5 instruction | 46 | * bzero -- vax movc5 instruction |