summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/strcmp.c
diff options
context:
space:
mode:
authormickey <mickey@openbsd.org>1998-06-27 01:21:03 +0000
committermickey <mickey@openbsd.org>1998-06-27 01:21:03 +0000
commit05ce469606850395c4337100a2b76a043e48a404 (patch)
tree352c73bbb126ed718a9f93dec55bd126f032f443 /sys/lib/libkern/strcmp.c
parenthmm, how could i miss this one? (diff)
downloadwireguard-openbsd-05ce469606850395c4337100a2b76a043e48a404.tar.xz
wireguard-openbsd-05ce469606850395c4337100a2b76a043e48a404.zip
there is no string.h in stand land
Diffstat (limited to 'sys/lib/libkern/strcmp.c')
-rw-r--r--sys/lib/libkern/strcmp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/strcmp.c b/sys/lib/libkern/strcmp.c
index a2578c25f69..48ed56b162f 100644
--- a/sys/lib/libkern/strcmp.c
+++ b/sys/lib/libkern/strcmp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: strcmp.c,v 1.5 1997/11/07 15:56:49 niklas Exp $ */
+/* $OpenBSD: strcmp.c,v 1.6 1998/06/27 01:21:05 mickey Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -38,11 +38,11 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strcmp.c 5.5 (Berkeley) 1/26/91";*/
-static char *rcsid = "$OpenBSD: strcmp.c,v 1.5 1997/11/07 15:56:49 niklas Exp $";
+static char *rcsid = "$OpenBSD: strcmp.c,v 1.6 1998/06/27 01:21:05 mickey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
-#ifndef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <string.h>
#else
#include <lib/libkern/libkern.h>