diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-11-13 15:59:25 +0100 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:13:50 -0800 |
commit | 5133b27934f4e5f91119bcfdc70be274f8394a9e (patch) | |
tree | 2c574b56430100605a24623db6e7be4222edce94 | |
parent | d0c17833560cd8f81654428775fd58a6a92788cf (diff) | |
download | uClibc-alpine-5133b27934f4e5f91119bcfdc70be274f8394a9e.tar.bz2 uClibc-alpine-5133b27934f4e5f91119bcfdc70be274f8394a9e.tar.xz |
silence warning about undefined CPP token
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | include/ctype.h | 2 |
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 |