diff options
Diffstat (limited to 'lib/libc/strings/strcasecmp.c')
| -rw-r--r-- | lib/libc/strings/strcasecmp.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/libc/strings/strcasecmp.c b/lib/libc/strings/strcasecmp.c index e96f059a..fc38be4a 100644 --- a/lib/libc/strings/strcasecmp.c +++ b/lib/libc/strings/strcasecmp.c @@ -1,5 +1,8 @@ -#include <libc.h> -#include <ctype.h> +#include "features.h" // for __weak + +#include <ctype.h> // for tolower +#include <libc.h> // for __unused +#include <locale.h> // for locale_t int strcasecmp(const char *s1, const char *s2) { |
