summaryrefslogtreecommitdiff
path: root/src/ctype/__ctype_get_mb_cur_max.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/__ctype_get_mb_cur_max.c')
-rw-r--r--src/ctype/__ctype_get_mb_cur_max.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/ctype/__ctype_get_mb_cur_max.c b/src/ctype/__ctype_get_mb_cur_max.c
index d235f4da..8e946fc1 100644
--- a/src/ctype/__ctype_get_mb_cur_max.c
+++ b/src/ctype/__ctype_get_mb_cur_max.c
@@ -1,6 +1,7 @@
-#include <stddef.h>
+#include <stdlib.h>
+#include "locale_impl.h"
size_t __ctype_get_mb_cur_max()
{
- return 4;
+ return MB_CUR_MAX;
}