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