From aac8634de2ee4f6f8d82172c97ec651e51097662 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 22 Oct 2016 10:12:10 -0600 Subject: [PATCH] ctype.h: Correct some dangling garbage from the last change --- include/ctype.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/ctype.h b/include/ctype.h index 49cc47f030..9138a97f4c 100644 --- a/include/ctype.h +++ b/include/ctype.h @@ -318,7 +318,6 @@ static inline int tolower(int c) #else # define tolower(c) \ (((c) >= 'A' && (c) <= 'Z') ? ((c) - 'A' + 'a') : (c)) -# define #endif /****************************************************************************