diff options
author | deraadt <> | 2014-06-10 04:17:37 +0000 |
---|---|---|
committer | deraadt <> | 2014-06-10 04:17:37 +0000 |
commit | d1cb2eb4f0f9779a6be2986e760ea8354285bed9 (patch) | |
tree | fc570d82ae9eecf65c8e32d374796f1b5cee541b /src/lib/libc/string/ffs.c | |
parent | e1b854f100e2e8f243d8afc553a6811b56a3ee4f (diff) | |
download | openbsd-d1cb2eb4f0f9779a6be2986e760ea8354285bed9.tar.gz openbsd-d1cb2eb4f0f9779a6be2986e760ea8354285bed9.tar.bz2 openbsd-d1cb2eb4f0f9779a6be2986e760ea8354285bed9.zip |
mop up ifndef KERNEL goo; ok miod
Diffstat (limited to 'src/lib/libc/string/ffs.c')
-rw-r--r-- | src/lib/libc/string/ffs.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libc/string/ffs.c b/src/lib/libc/string/ffs.c index 7dec1613a8..de4480a7ef 100644 --- a/src/lib/libc/string/ffs.c +++ b/src/lib/libc/string/ffs.c | |||
@@ -1,15 +1,11 @@ | |||
1 | /* $OpenBSD: ffs.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ | 1 | /* $OpenBSD: ffs.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Public domain. | 4 | * Public domain. |
5 | * Written by Dale Rahn. | 5 | * Written by Dale Rahn. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #if !defined(_KERNEL) && !defined(_STANDALONE) | ||
9 | #include <string.h> | 8 | #include <string.h> |
10 | #else | ||
11 | #include <lib/libkern/libkern.h> | ||
12 | #endif | ||
13 | 9 | ||
14 | /* | 10 | /* |
15 | * ffs -- vax ffs instruction | 11 | * ffs -- vax ffs instruction |