Remove inline from strtold

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