mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Remove internal_function attribute from string-to-float functions
These are called across DSO boundaries and should therefore use the standard calling convention.
This commit is contained in:
@ -201,16 +201,12 @@ libc_hidden_proto (strtoll)
|
||||
libc_hidden_proto (strtoul)
|
||||
libc_hidden_proto (strtoull)
|
||||
|
||||
extern float __strtof_nan (const char *, char **, char) internal_function;
|
||||
extern double __strtod_nan (const char *, char **, char) internal_function;
|
||||
extern long double __strtold_nan (const char *, char **, char)
|
||||
internal_function;
|
||||
extern float __wcstof_nan (const wchar_t *, wchar_t **, wchar_t)
|
||||
internal_function;
|
||||
extern double __wcstod_nan (const wchar_t *, wchar_t **, wchar_t)
|
||||
internal_function;
|
||||
extern long double __wcstold_nan (const wchar_t *, wchar_t **, wchar_t)
|
||||
internal_function;
|
||||
extern float __strtof_nan (const char *, char **, char);
|
||||
extern double __strtod_nan (const char *, char **, char);
|
||||
extern long double __strtold_nan (const char *, char **, char);
|
||||
extern float __wcstof_nan (const wchar_t *, wchar_t **, wchar_t);
|
||||
extern double __wcstod_nan (const wchar_t *, wchar_t **, wchar_t);
|
||||
extern long double __wcstold_nan (const wchar_t *, wchar_t **, wchar_t);
|
||||
|
||||
libc_hidden_proto (__strtof_nan)
|
||||
libc_hidden_proto (__strtod_nan)
|
||||
@ -228,10 +224,8 @@ extern __typeof (strtof128_l) __strtof128_l;
|
||||
libc_hidden_proto (__strtof128_l)
|
||||
libc_hidden_proto (strtof128)
|
||||
|
||||
extern _Float128 __strtof128_nan (const char *, char **, char)
|
||||
internal_function;
|
||||
extern _Float128 __wcstof128_nan (const wchar_t *, wchar_t **, wchar_t)
|
||||
internal_function;
|
||||
extern _Float128 __strtof128_nan (const char *, char **, char);
|
||||
extern _Float128 __wcstof128_nan (const wchar_t *, wchar_t **, wchar_t);
|
||||
|
||||
libc_hidden_proto (__strtof128_nan)
|
||||
libc_hidden_proto (__wcstof128_nan)
|
||||
|
Reference in New Issue
Block a user