diff options
Diffstat (limited to 'sys/lib/libkern/strcat.c')
-rw-r--r-- | sys/lib/libkern/strcat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/strcat.c b/sys/lib/libkern/strcat.c index a63f2209bf2..a493de8935a 100644 --- a/sys/lib/libkern/strcat.c +++ b/sys/lib/libkern/strcat.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strcat.c,v 1.3 1996/05/01 15:18:49 deraadt Exp $ */ +/* $OpenBSD: strcat.c,v 1.4 1998/06/27 01:21:04 mickey Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -35,10 +35,10 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)strcat.c 5.6 (Berkeley) 2/24/91";*/ -static char *rcsid = "$OpenBSD: strcat.c,v 1.3 1996/05/01 15:18:49 deraadt Exp $"; +static char *rcsid = "$OpenBSD: strcat.c,v 1.4 1998/06/27 01:21:04 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef _KERNEL +#if !defined(_KERNEL) && !defined(_STANDALONE) #include <string.h> #else #include <lib/libkern/libkern.h> |