diff options
Diffstat (limited to 'lib/libc/ctype/tolower.c')
| -rw-r--r-- | lib/libc/ctype/tolower.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/ctype/tolower.c b/lib/libc/ctype/tolower.c index aeb462d8..af196d05 100644 --- a/lib/libc/ctype/tolower.c +++ b/lib/libc/ctype/tolower.c @@ -1,5 +1,8 @@ -#include <libc.h> -#include <ctype.h> +#include "features.h" // for __weak + +#include <ctype.h> // for isupper, tolower, tolower_l +#include <libc.h> // for __unused +#include <locale.h> // for locale_t int tolower(int c) { |
