summaryrefslogtreecommitdiff
path: root/src/stdlib/strtold.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-04-10 20:25:06 -0400
committerRich Felker <dalias@aerifal.cx>2012-04-10 20:25:06 -0400
commit4fb6aa02c88a6b8b718c0ae982d072aa6ab8559f (patch)
tree6a68b9cd73a632661a69f4ae9282ea0da4b94754 /src/stdlib/strtold.c
parent415c4cd7fdb3e8b7476fbb2be2390f4592cf5165 (diff)
downloadmusl-4fb6aa02c88a6b8b718c0ae982d072aa6ab8559f.tar.gz
unify strtof/strtod/strtold wrappers and fix initial whitespace issue
Diffstat (limited to 'src/stdlib/strtold.c')
-rw-r--r--src/stdlib/strtold.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/stdlib/strtold.c b/src/stdlib/strtold.c
deleted file mode 100644
index 40ecc122..00000000
--- a/src/stdlib/strtold.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdlib.h>
-#include "floatscan.h"
-#include "stdio_impl.h"
-
-long double strtold(const char *s, char **p)
-{
- FILE f = {
- .buf = (void *)s, .rpos = (void *)s,
- .rend = (void *)-1, .lock = -1
- };
- off_t cnt;
- long double y = __floatscan(&f, -1, 2, 1, &cnt);
- if (p) *p = (char *)s + cnt;
- return y;
-}