summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-13 15:59:25 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2009-11-13 15:59:25 +0100
commiteaacd088acf8653e22a0fa6193e63942850e6751 (patch)
treea1aef3af391fe354b4f30d2c8775dde60a7d6149 /include
parent1de3bed755666eb3d0b3529e33c9a8b8445293ff (diff)
silence warning about undefined CPP token
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/ctype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ctype.h b/include/ctype.h
index da73a44fc..2d62847fe 100644
--- a/include/ctype.h
+++ b/include/ctype.h
@@ -281,7 +281,7 @@ __NTH (toupper (int __c))
# if defined __USE_SVID || defined __USE_MISC || defined __USE_XOPEN
# define isascii(c) __isascii (c)
# define toascii(c) __toascii (c)
-# if __UCLIBC_SUSV4_LEGACY__
+# if defined __UCLIBC_SUSV4_LEGACY__
# define _tolower(c) ((int) (__UCLIBC_CTYPE_TOLOWER)[(int) (c)])
# define _toupper(c) ((int) (__UCLIBC_CTYPE_TOUPPER)[(int) (c)])
# endif