From: Ulrich Drepper Date: Mon, 8 Apr 2002 18:26:37 +0000 (+0000) Subject: For libc itself replace MB_CUR_MAX definition with one accessing the locale data... X-Git-Tag: upstream/2.30~21851 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4c93a54ca8c197ab73425db52351f110af795957;p=external%2Fglibc.git For libc itself replace MB_CUR_MAX definition with one accessing the locale data structures directly. --- diff --git a/include/stdlib.h b/include/stdlib.h index 16f7aa2..55437d4 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -146,6 +146,12 @@ __strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr, return ____strtoull_l_internal (__nptr, __endptr, __base, 0, __loc); } + +# ifndef NOT_IN_LIBC +# undef MB_CUR_MAX +# define MB_CUR_MAX (_NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_MB_CUR_MAX)) +# endif + #endif #undef __Need_M_And_C