summaryrefslogtreecommitdiff
path: root/sys/lib
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>2004-09-23 12:55:11 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>2004-09-23 12:55:11 +0000
commit05de4085922084e54848503fc4de9350ddbbb666 (patch)
treeb9dc636fd049b6e487de019cc61108233973516e /sys/lib
parent339d5e8a70c9a97d437aebeceacdf3104e4fbeae (diff)
make it compile with _STANDALONE, ok deraadt@
Diffstat (limited to 'sys/lib')
-rw-r--r--sys/lib/libkern/bzero.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/bzero.c b/sys/lib/libkern/bzero.c
index d3d83786d38..9b432419ba5 100644
--- a/sys/lib/libkern/bzero.c
+++ b/sys/lib/libkern/bzero.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bzero.c,v 1.5 2004/08/07 00:38:32 deraadt Exp $ */
+/* $OpenBSD: bzero.c,v 1.6 2004/09/23 12:55:10 pefo Exp $ */
/*
* Copyright (c) 1987 Regents of the University of California.
@@ -31,10 +31,10 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)bzero.c 5.7 (Berkeley) 2/24/91";*/
-static char *rcsid = "$OpenBSD: bzero.c,v 1.5 2004/08/07 00:38:32 deraadt Exp $";
+static char *rcsid = "$OpenBSD: bzero.c,v 1.6 2004/09/23 12:55:10 pefo Exp $";
#endif /* LIBC_SCCS and not lint */
-#ifndef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
#include <string.h>
#else
#include <lib/libkern/libkern.h>