author | Rich Felker <dalias@aerifal.cx> | 2021年12月09日 15:35:13 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2021年12月09日 15:35:13 -0500 |
commit | 8d404733e1314ef633aa09a90865e94fe711b4ca (patch) | |
tree | 7655aae5d6622c3505c92f4a444b3363614893a2 /src/stdlib/strtod.c | |
parent | 98e688a9da5e7b2925dda17a2d6820dddf1fb287 (diff) | |
download | musl-8d404733e1314ef633aa09a90865e94fe711b4ca.tar.gz |
-rw-r--r-- | src/stdlib/strtod.c | 7 |
diff --git a/src/stdlib/strtod.c b/src/stdlib/strtod.c index a5d0118a..39b9daad 100644 --- a/src/stdlib/strtod.c +++ b/src/stdlib/strtod.c @@ -28,10 +28,3 @@ long double strtold(const char *restrict s, char **restrict p) { return strtox(s, p, 2); } - -weak_alias(strtof, strtof_l); -weak_alias(strtod, strtod_l); -weak_alias(strtold, strtold_l); -weak_alias(strtof, __strtof_l); -weak_alias(strtod, __strtod_l); -weak_alias(strtold, __strtold_l); |