From 225655b711478406e2114d0ae64294bf39ddbe82 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 12 Jan 2024 11:53:47 -0700 Subject: [PATCH] Do not mark strtold as static --- 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 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); }