summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2002-11-07 19:45:54 +0000
committerManuel Novoa III <mjn3@codepoet.org>2002-11-07 19:45:54 +0000
commit71a4f3c3fec71c8590e3b3656917fcb5311272d6 (patch)
tree7ff901b0e9682967c721a3486c92e0e21b662b1d /libc
parent18abcc693b3a2d54341868b9d274fd37e712d255 (diff)
Remove atof from strtod.o...
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));
-
-}