diff options
author | peter <peter@FreeBSD.org> | 1999-12-29 05:07:58 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-12-29 05:07:58 +0000 |
commit | d53e4c1d809338e9b317d95bdded2f7f7a986556 (patch) | |
tree | 916004bdaa3cf47d2a92effe8c981e7d1ff5ccec /sys/crypto | |
parent | 15b9bcb121e1f3735a2c98a11afdb52a03301d7e (diff) | |
download | FreeBSD-src-d53e4c1d809338e9b317d95bdded2f7f7a986556.zip FreeBSD-src-d53e4c1d809338e9b317d95bdded2f7f7a986556.tar.gz |
Change #ifdef KERNEL to #ifdef _KERNEL in the public headers. "KERNEL"
is an application space macro and the applications are supposed to be free
to use it as they please (but cannot). This is consistant with the other
BSD's who made this change quite some time ago. More commits to come.
Diffstat (limited to 'sys/crypto')
-rw-r--r-- | sys/crypto/des/des_locl.h | 2 | ||||
-rw-r--r-- | sys/crypto/sha1.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/des/des_locl.h b/sys/crypto/des/des_locl.h index 4f23984..ff49cc7 100644 --- a/sys/crypto/des/des_locl.h +++ b/sys/crypto/des/des_locl.h @@ -94,7 +94,7 @@ #undef NOPROTO #endif -#if !defined(KERNEL) && (defined(__STDC__) || defined(VMS) || defined(M_XENIX) || defined(MSDOS)) +#if !defined(_KERNEL) && (defined(__STDC__) || defined(VMS) || defined(M_XENIX) || defined(MSDOS)) #ifndef __NetBSD__ #include <string.h> #endif diff --git a/sys/crypto/sha1.h b/sys/crypto/sha1.h index 05fdf27..a6a4fab 100644 --- a/sys/crypto/sha1.h +++ b/sys/crypto/sha1.h @@ -53,7 +53,7 @@ struct sha1_ctxt { u_int8_t count; }; -#if defined(KERNEL) || defined(_KERNEL) +#ifdef _KERNEL extern void sha1_init __P((struct sha1_ctxt *)); extern void sha1_pad __P((struct sha1_ctxt *)); extern void sha1_loop __P((struct sha1_ctxt *, caddr_t, size_t)); |