From 17ac6ef039bccd8612ccca76829225d0479b1e47 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 12 Jan 2024 12:05:47 -0700 Subject: [PATCH] Remove inline from strtold --- include/bits/stdlib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }