diff --git a/userspace/libraries/LibC/include/ctype.h b/userspace/libraries/LibC/include/ctype.h index b7ea45c1..84ef292c 100644 --- a/userspace/libraries/LibC/include/ctype.h +++ b/userspace/libraries/LibC/include/ctype.h @@ -40,8 +40,8 @@ int tolower_l(int, locale_t); int toupper(int); int toupper_l(int, locale_t); -#define _toupper(val) ::toupper(val) -#define _tolower(val) ::tolower(val) +#define _toupper(val) toupper(val) +#define _tolower(val) tolower(val) __END_DECLS