Make relibc (except libm) pure Rust

This commit is contained in:
4lDO2
2024-01-11 13:08:06 +00:00
committed by Jeremy Soller
parent 49ee2f0593
commit 5630b6e0df
30 changed files with 281 additions and 804 deletions
+3 -1
View File
@@ -5,7 +5,9 @@
extern "C" {
#endif
long double strtold(const char *nptr, char **endptr);
static inline long double strtold(const char *nptr, char **endptr) {
return (long double)strtod(nptr, endptr);
}
#ifdef __cplusplus
} // extern "C"