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/explicit_bzero.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/explicit_bzero.c')
-rw-r--r-- | src/lib/libc/string/explicit_bzero.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/libc/string/explicit_bzero.c b/src/lib/libc/string/explicit_bzero.c index fd2948ca44..5124df23ca 100644 --- a/src/lib/libc/string/explicit_bzero.c +++ b/src/lib/libc/string/explicit_bzero.c | |||
@@ -1,14 +1,10 @@ | |||
1 | /* $OpenBSD: explicit_bzero.c,v 1.1 2014/01/22 21:06:45 tedu Exp $ */ | 1 | /* $OpenBSD: explicit_bzero.c,v 1.2 2014/06/10 04:17:37 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Public domain. | 3 | * Public domain. |
4 | * Written by Ted Unangst | 4 | * Written by Ted Unangst |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #if !defined(_KERNEL) && !defined(_STANDALONE) | ||
8 | #include <string.h> | 7 | #include <string.h> |
9 | #else | ||
10 | #include <lib/libkern/libkern.h> | ||
11 | #endif | ||
12 | 8 | ||
13 | /* | 9 | /* |
14 | * explicit_bzero - don't let the compiler optimize away bzero | 10 | * explicit_bzero - don't let the compiler optimize away bzero |