diff options
author | 1998-06-01 17:02:21 +0000 | |
---|---|---|
committer | 1998-06-01 17:02:21 +0000 | |
commit | d6140925af6a355ab4562d9dd038f9df47505871 (patch) | |
tree | 95347eb25e3fa1036d38f49472ba6f2cb2d3097e /sys/lib | |
parent | set correct source address for owner SPIs (diff) | |
download | wireguard-openbsd-d6140925af6a355ab4562d9dd038f9df47505871.tar.xz wireguard-openbsd-d6140925af6a355ab4562d9dd038f9df47505871.zip |
this is standalone, not kernel
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libsa/strchr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/lib/libsa/strchr.c b/sys/lib/libsa/strchr.c index 1d97ffadf08..c7026e484a5 100644 --- a/sys/lib/libsa/strchr.c +++ b/sys/lib/libsa/strchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strchr.c,v 1.1 1997/05/05 14:32:16 millert Exp $ */ +/* $OpenBSD: strchr.c,v 1.2 1998/06/01 17:02:21 mickey Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -34,13 +34,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: strchr.c,v 1.1 1997/05/05 14:32:16 millert Exp $"; +static char *rcsid = "$OpenBSD: strchr.c,v 1.2 1998/06/01 17:02:21 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ -#ifndef _KERNEL +#ifndef _STANDALONE #include <string.h> #else -#include <lib/libkern/libkern.h> +#include <lib/libsa/stand.h> #endif char * |