summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2005-04-15 23:46:07 +0000
committerrillig <rillig@NetBSD.org>2005-04-15 23:46:07 +0000
commit7f8368c35e9387f23bbe3e73179ca40ff2bf833e (patch)
treea33c7de2bfbb856d21848af15a10f50dfb451261 /include
parentd6a0715a49ff72ac4913c261986ac78f62f3d73b (diff)
Replaced the macro name "notyet" with a 0. There's always the possibility
that a strictly conforming C program uses that name itself, so it had to be removed. Also put the long comment above the #if 0, because it describes the #if, not the isblank() macro. Added two blank lines to make the grouping clear. Approved by kleink.
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ctype.h b/include/ctype.h
index 9abbf7e3697..ab9a7163116 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -1,4 +1,4 @@
-/* $NetBSD: ctype.h,v 1.27 2005/02/03 04:39:32 perry Exp $ */
+/* $NetBSD: ctype.h,v 1.28 2005/04/15 23:46:07 rillig Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@@ -107,13 +107,15 @@ __END_DECLS
#if defined(_ISO_C99_SOURCE) || (_POSIX_C_SOURCE - 0) > 200112L || \
(_XOPEN_SOURCE - 0) > 600 || defined(_NETBSD_SOURCE)
-#if notyet
+
/*
* isblank() is implemented as C function, due to insufficient bitwidth in
* _ctype_. Note that _B does not mean isblank - it means isprint && !isgraph.
*/
+#if 0
#define isblank(c) ((int)((_ctype_ + 1)[(c)] & _B))
#endif
+
#endif
#ifdef _CTYPE_PRIVATE