Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions system/lib/libcxx/include/__support/musl/xlocale.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ inline _LIBCPP_HIDE_FROM_ABI_C long double wcstold_l(const wchar_t* __nptr, wcha
return ::wcstold(__nptr, __endptr);
}

inline _LIBCPP_HIDE_FROM_ABI_C double wcstod_l(const wchar_t* __nptr, wchar_t** __endptr, locale_t) {
return ::wcstod(__nptr, __endptr);
}

inline _LIBCPP_HIDE_FROM_ABI_C float wcstof_l(const wchar_t* __nptr, wchar_t** __endptr, locale_t) {
return ::wcstof(__nptr, __endptr);
}

#ifdef __cplusplus
}
#endif
Expand Down