ctype.h: Correct some dangling garbage from the last change

This commit is contained in:
Gregory Nutt 2016-10-22 10:12:10 -06:00
parent c08cb7ddea
commit aac8634de2

View file

@ -318,7 +318,6 @@ static inline int tolower(int c)
#else
# define tolower(c) \
(((c) >= 'A' && (c) <= 'Z') ? ((c) - 'A' + 'a') : (c))
# define
#endif
/****************************************************************************