diff --git a/headers/posix/ctype.h b/headers/posix/ctype.h index 3407151b81..493ffea050 100644 --- a/headers/posix/ctype.h +++ b/headers/posix/ctype.h @@ -54,6 +54,8 @@ extern const int *__ctype_toupper; #define tolower(c) ((int)__ctype_tolower[(int)(c)]) #define toupper(c) ((int)__ctype_toupper[(int)(c)]) +#define _tolower(c) tolower(c) +#define _toupper(c) toupper(c) #define isalnum(c) __isctype((c), _ISalnum) #define isalpha(c) __isctype((c), _ISalpha)