diff --git a/include/bits/stdlib.h b/include/bits/stdlib.h index 0024af3adb..f7b3d36b40 100644 --- a/include/bits/stdlib.h +++ b/include/bits/stdlib.h @@ -5,7 +5,7 @@ extern "C" { #endif -static inline long double strtold(const char *nptr, char **endptr) { +inline long double strtold(const char *nptr, char **endptr) { return (long double)strtod(nptr, endptr); }