Browse Source

ctype.h: Tweak comment

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 10 years ago
parent
commit
5799194b75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/ctype.h

+ 1 - 1
include/ctype.h

@@ -404,8 +404,8 @@ __END_DECLS
 
 #endif /* __UCLIBC_HAS_CTYPE_TABLES__ */
 
-/* We define {__,}isascii for internal use only */
 #if defined _LIBC && !defined __UCLIBC_SUSV4_LEGACY__
+/* We define {__,}isascii for internal use only */
 # define __isascii(c) (((c) & ~0x7f) == 0)
 # define isascii(c) __isascii (c)
 #endif