X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fstdlib%2Fstrtof.c;fp=src%2Fstdlib%2Fstrtof.c;h=0000000000000000000000000000000000000000;hb=4fb6aa02c88a6b8b718c0ae982d072aa6ab8559f;hp=2dc349a926e5750f02e6a0569559f28fdb4e4e5f;hpb=415c4cd7fdb3e8b7476fbb2be2390f4592cf5165;p=musl diff --git a/src/stdlib/strtof.c b/src/stdlib/strtof.c deleted file mode 100644 index 2dc349a9..00000000 --- a/src/stdlib/strtof.c +++ /dev/null @@ -1,15 +0,0 @@ -#include -#include "floatscan.h" -#include "stdio_impl.h" - -float strtof(const char *s, char **p) -{ - FILE f = { - .buf = (void *)s, .rpos = (void *)s, - .rend = (void *)-1, .lock = -1 - }; - off_t cnt; - float y = __floatscan(&f, -1, 0, 1, &cnt); - if (p) *p = (char *)s + cnt; - return y; -}