ctype.h: Correct some dangling garbage from the last change
This commit is contained in:
parent
c08cb7ddea
commit
aac8634de2
@ -318,7 +318,6 @@ static inline int tolower(int c)
|
|||||||
#else
|
#else
|
||||||
# define tolower(c) \
|
# define tolower(c) \
|
||||||
(((c) >= 'A' && (c) <= 'Z') ? ((c) - 'A' + 'a') : (c))
|
(((c) >= 'A' && (c) <= 'Z') ? ((c) - 'A' + 'a') : (c))
|
||||||
# define
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
Loading…
Reference in New Issue
Block a user