diff options
Diffstat (limited to 'src/lib/libc/string/strcmp.c')
-rw-r--r-- | src/lib/libc/string/strcmp.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libc/string/strcmp.c b/src/lib/libc/string/strcmp.c index ae19e2e26e..690da8f3fb 100644 --- a/src/lib/libc/string/strcmp.c +++ b/src/lib/libc/string/strcmp.c | |||
@@ -36,10 +36,14 @@ | |||
36 | 36 | ||
37 | #if defined(LIBC_SCCS) && !defined(lint) | 37 | #if defined(LIBC_SCCS) && !defined(lint) |
38 | /*static char *sccsid = "from: @(#)strcmp.c 5.5 (Berkeley) 1/26/91";*/ | 38 | /*static char *sccsid = "from: @(#)strcmp.c 5.5 (Berkeley) 1/26/91";*/ |
39 | static char *rcsid = "$Id: strcmp.c,v 1.1.1.1 1995/10/18 08:42:22 deraadt Exp $"; | 39 | static char *rcsid = "$Id: strcmp.c,v 1.2 1996/05/01 12:57:47 deraadt Exp $"; |
40 | #endif /* LIBC_SCCS and not lint */ | 40 | #endif /* LIBC_SCCS and not lint */ |
41 | 41 | ||
42 | #ifndef _KERNEL | ||
42 | #include <string.h> | 43 | #include <string.h> |
44 | #else | ||
45 | #include <lib/libkern/libkern.h> | ||
46 | #endif | ||
43 | 47 | ||
44 | /* | 48 | /* |
45 | * Compare strings. | 49 | * Compare strings. |