fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / locale / iswspace_l.c
index befccc8..b507e9e 100644 (file)
@@ -1,6 +1,6 @@
 #include <wctype.h>
 
-wint_t iswspace_l(wint_t c, locale_t l)
+int iswspace_l(wint_t c, locale_t l)
 {
        return iswspace(c);
 }