diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-27 01:08:00 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-27 01:08:00 +0000 |
commit | 9193c1e1b96b7711352aa76b59fe141fa723c6ca (patch) | |
tree | 7972cd7362cf76241c2110e43ba7d7dc7df98dc5 /sys/lib | |
parent | 2210ff7cfc3cc7c6cafe403b23275766b401a5be (diff) |
stand guys don't have string.h as well
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libkern/strncpy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/strncpy.c b/sys/lib/libkern/strncpy.c index 45c8e04ae8a..b1cb68f3fee 100644 --- a/sys/lib/libkern/strncpy.c +++ b/sys/lib/libkern/strncpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strncpy.c,v 1.3 1997/11/07 15:56:51 niklas Exp $ */ +/* $OpenBSD: strncpy.c,v 1.4 1998/06/27 01:07:59 mickey Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -38,10 +38,10 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)strncpy.c 5.6 (Berkeley) 1/26/91";*/ -static char *rcsid = "$OpenBSD: strncpy.c,v 1.3 1997/11/07 15:56:51 niklas Exp $"; +static char *rcsid = "$OpenBSD: strncpy.c,v 1.4 1998/06/27 01:07:59 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef _KERNEL +#if !defined(_KERNEL) && !defined(_STANDALONE) #include <string.h> #else #include <lib/libkern/libkern.h> |