diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2002-11-07 19:45:54 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2002-11-07 19:45:54 +0000 |
commit | 71a4f3c3fec71c8590e3b3656917fcb5311272d6 (patch) | |
tree | 7ff901b0e9682967c721a3486c92e0e21b662b1d | |
parent | 18abcc693b3a2d54341868b9d274fd37e712d255 (diff) | |
download | uClibc-alpine-71a4f3c3fec71c8590e3b3656917fcb5311272d6.tar.bz2 uClibc-alpine-71a4f3c3fec71c8590e3b3656917fcb5311272d6.tar.xz |
Remove atof from strtod.o...
-rw-r--r-- | libc/stdlib/strtod.c | 7 |
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)); - -} |