remove redefinition of MB_CUR_MAX in locale_impl.h
[musl] / src / ctype / __ctype_toupper_loc.c
index 5e23dda..ffaef0e 100644 (file)
@@ -1,5 +1,4 @@
-#include <ctype.h>
-#include <inttypes.h>
+#include <stdint.h>
 
 static const int32_t table[] = {
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
@@ -23,7 +22,7 @@ static const int32_t table[] = {
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 };
 
-static const int32_t *const ptable = table;
+static const int32_t *const ptable = table+128;
 
 const int32_t **__ctype_toupper_loc(void)
 {