diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-01 17:02:22 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-01 17:02:22 +0000 |
commit | 02458cb3a71355a1a5e6f594c20ae01ca7c5c7c8 (patch) | |
tree | 208e75e45c203b3597914bb4e11e9fec87098b6f /sys | |
parent | 18400be032e9be515c725740b2104d9116b54620 (diff) |
this is standalone, not kernel
Diffstat (limited to 'sys')
-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 * |