File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
libcxx/include/__locale_dir/support Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -83,30 +83,15 @@ inline _LIBCPP_HIDE_FROM_ABI __lconv_t* __localeconv(__locale_t& __loc) {
8383// Strtonum functions
8484//
8585inline _LIBCPP_HIDE_FROM_ABI float __strtof (const char * __nptr, char ** __endptr, __locale_t __loc) {
86- #if !_LIBCPP_HAS_MUSL_LIBC || defined(_GNU_SOURCE)
8786 return ::strtof_l (__nptr, __endptr, __loc);
88- #else
89- (void )__loc;
90- return ::strtof (__nptr, __endptr);
91- #endif
9287}
9388
9489inline _LIBCPP_HIDE_FROM_ABI double __strtod (const char * __nptr, char ** __endptr, __locale_t __loc) {
95- #if !_LIBCPP_HAS_MUSL_LIBC || defined(_GNU_SOURCE)
9690 return ::strtod_l (__nptr, __endptr, __loc);
97- #else
98- (void )__loc;
99- return ::strtod (__nptr, __endptr);
100- #endif
10191}
10292
10393inline _LIBCPP_HIDE_FROM_ABI long double __strtold (const char * __nptr, char ** __endptr, __locale_t __loc) {
104- #if !_LIBCPP_HAS_MUSL_LIBC || defined(_GNU_SOURCE)
10594 return ::strtold_l (__nptr, __endptr, __loc);
106- #else
107- (void )__loc;
108- return ::strtold (__nptr, __endptr);
109- #endif
11095}
11196
11297//
You can’t perform that action at this time.
0 commit comments