fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / locale / strncasecmp_l.c
1 #include <strings.h>
2 #include <locale.h>
3
4 int strncasecmp_l(const char *l, const char *r, size_t n, locale_t loc)
5 {
6         return strncasecmp(l, r, n);
7 }