diff options
Diffstat (limited to 'sys/sys/ctype.h')
-rw-r--r-- | sys/sys/ctype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/ctype.h b/sys/sys/ctype.h index 9144b0e..b306e85 100644 --- a/sys/sys/ctype.h +++ b/sys/sys/ctype.h @@ -41,7 +41,7 @@ #ifndef _SYS_CTYPE_H_ #define _SYS_CTYPE_H_ -#ifdef KERNEL +#ifdef _KERNEL #define isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) #define isascii(c) (((c) & ~0x7f) == 0) @@ -56,5 +56,5 @@ #define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z'))) #define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) -#endif /* KERNEL */ +#endif #endif /* !_SYS_CTYPE_H_ */ |