Do not mark strtold as static

This commit is contained in:
Jeremy Soller
2024-01-12 11:53:47 -07:00
parent b8ee20cb66
commit 225655b711
+1 -1
View File
@@ -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);
}