summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
Diffstat (limited to 'libc')
-rw-r--r--libc/stdlib/strtod.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libc/stdlib/strtod.c b/libc/stdlib/strtod.c
index 629d412b6..7359d5cf9 100644
--- a/libc/stdlib/strtod.c
+++ b/libc/stdlib/strtod.c
@@ -261,10 +261,3 @@ double strtod(const char *str, char **endptr)
return number;
}
-
-/* This should probably be in its own .o file. Oh well. */
-double atof(const char *str)
-{
- return(strtod((str),(char**)0));
-
-}