diff options
author | 1998-06-27 01:21:03 +0000 | |
---|---|---|
committer | 1998-06-27 01:21:03 +0000 | |
commit | 05ce469606850395c4337100a2b76a043e48a404 (patch) | |
tree | 352c73bbb126ed718a9f93dec55bd126f032f443 /sys/lib/libkern/strncasecmp.c | |
parent | hmm, how could i miss this one? (diff) | |
download | wireguard-openbsd-05ce469606850395c4337100a2b76a043e48a404.tar.xz wireguard-openbsd-05ce469606850395c4337100a2b76a043e48a404.zip |
there is no string.h in stand land
Diffstat (limited to 'sys/lib/libkern/strncasecmp.c')
-rw-r--r-- | sys/lib/libkern/strncasecmp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/strncasecmp.c b/sys/lib/libkern/strncasecmp.c index 5249050ddd8..a67f8fc54b1 100644 --- a/sys/lib/libkern/strncasecmp.c +++ b/sys/lib/libkern/strncasecmp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strncasecmp.c,v 1.2 1996/05/01 15:18:52 deraadt Exp $ */ +/* $OpenBSD: strncasecmp.c,v 1.3 1998/06/27 01:21:09 mickey Exp $ */ /* * Copyright (c) 1994 Christian E. Hopps @@ -30,10 +30,10 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$Id: strncasecmp.c,v 1.2 1996/05/01 15:18:52 deraadt Exp $"; +static char *rcsid = "$Id: strncasecmp.c,v 1.3 1998/06/27 01:21:09 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef _KERNEL +#if !defined(_KERNEL) && !defined(_STANDALONE) #include <string.h> #else #include <lib/libkern/libkern.h> |