fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / src / string / wcsncasecmp_l.c
1 #include <wchar.h>
2
3 int wcsncasecmp_l(const wchar_t *l, const wchar_t *r, size_t n, locale_t locale)
4 {
5         return wcsncasecmp(l, r, n);
6 }