diff options
Diffstat (limited to 'src/ctype')
-rw-r--r-- | src/ctype/__ctype_get_mb_cur_max.c | 5 |
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; } |