diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-04-09 00:18:07 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-04-09 00:18:07 +0200 |
commit | 5799194b75b238491501cbb122f5d7025edd3aa2 (patch) | |
tree | 4142639eed6582752ce045d2ecd2aec1f9cfbaaa /include | |
parent | 278a06d7abcc8774ba9bb9c15779749c7e2d68cd (diff) |
ctype.h: Tweak comment
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'include')
-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 136d0721c..ecd5e7308 100644 --- a/include/ctype.h +++ b/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 |