@@ -58,7 +58,7 @@ int mbsinit(const mbstate_t* _Nullable __ps);
5858size_t mbrlen (const char * _Nullable __s , size_t __n , mbstate_t * _Nullable __ps );
5959size_t mbrtowc (wchar_t * _Nullable __buf , const char * _Nullable __s , size_t __n , mbstate_t * _Nullable __ps );
6060size_t mbsrtowcs (wchar_t * _Nullable __dst , const char * _Nullable * _Nonnull __src , size_t __dst_n , mbstate_t * _Nullable __ps );
61- size_t mbsrtowcs_l (wchar_t * _Nullable __dst , const char * _Nullable * _Nonnull __src , size_t __dst_n , mbstate_t * _Nullable __ps , locale_t _Nonnull __l ) __INTRODUCED_IN ( 35 );
61+ size_t mbsrtowcs_l (wchar_t * _Nullable __dst , const char * _Nullable * _Nonnull __src , size_t __dst_n , mbstate_t * _Nullable __ps , locale_t _Nonnull __l ) __RENAME ( mbsrtowcs );
6262size_t mbsnrtowcs (wchar_t * _Nullable __dst , const char * _Nullable * _Nullable __src , size_t __src_n , size_t __dst_n , mbstate_t * _Nullable __ps );
6363wint_t putwc (wchar_t __wc , FILE * _Nonnull __fp );
6464wint_t putwchar (wchar_t __wc );
@@ -94,20 +94,20 @@ size_t wcsnrtombs(char* _Nullable __dst, const wchar_t* __BIONIC_COMPLICATED_NUL
9494wchar_t * _Nullable wcspbrk (const wchar_t * _Nonnull __s , const wchar_t * _Nonnull __accept );
9595wchar_t * _Nullable wcsrchr (const wchar_t * _Nonnull __s , wchar_t __wc );
9696size_t wcsrtombs (char * _Nullable __dst , const wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __src , size_t __dst_n , mbstate_t * _Nullable __ps );
97- size_t wcsrtombs_l (char * _Nullable __dst , const wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __src , size_t __dst_n , mbstate_t * _Nullable __ps , locale_t _Nonnull __l ) __INTRODUCED_IN ( 35 );
97+ size_t wcsrtombs_l (char * _Nullable __dst , const wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __src , size_t __dst_n , mbstate_t * _Nullable __ps , locale_t _Nonnull __l ) __RENAME ( wcsrtombs );
9898size_t wcsspn (const wchar_t * _Nonnull __s , const wchar_t * _Nonnull __accept );
9999wchar_t * _Nullable wcsstr (const wchar_t * _Nonnull __haystack , const wchar_t * _Nonnull __needle );
100100double wcstod (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr );
101- double wcstod_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , locale_t _Nonnull __l ) __INTRODUCED_IN ( 28 );
101+ double wcstod_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , locale_t _Nonnull __l ) __RENAME ( wcstod );
102102float wcstof (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr );
103- float wcstof_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , locale_t _Nonnull __l ) __INTRODUCED_IN ( 28 );
103+ float wcstof_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , locale_t _Nonnull __l ) __RENAME ( wcstof );
104104wchar_t * _Nullable wcstok (wchar_t * _Nullable __s , const wchar_t * _Nonnull __delimiter , wchar_t * _Nonnull * _Nonnull __ptr );
105105long wcstol (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base );
106- long wcstol_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base , locale_t _Nonnull __l ) __INTRODUCED_IN ( 28 );
106+ long wcstol_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base , locale_t _Nonnull __l ) __RENAME ( wcstol );
107107long long wcstoll (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base );
108108long double wcstold (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr );
109109unsigned long wcstoul (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base );
110- unsigned long wcstoul_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base , locale_t _Nonnull __l ) __INTRODUCED_IN ( 28 );
110+ unsigned long wcstoul_l (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base , locale_t _Nonnull __l ) __RENAME ( wcstoul );
111111unsigned long long wcstoull (const wchar_t * _Nonnull __s , wchar_t * __BIONIC_COMPLICATED_NULLNESS * _Nullable __end_ptr , int __base );
112112int wcswidth (const wchar_t * _Nonnull __s , size_t __n );
113113size_t wcsxfrm (wchar_t * __BIONIC_COMPLICATED_NULLNESS __dst , const wchar_t * _Nonnull __src , size_t __n );
0 commit comments