OSDN Git Service

Remove atof from strtod.o...
authorManuel Novoa III <mjn3@codepoet.org>
Thu, 7 Nov 2002 19:45:54 +0000 (19:45 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Thu, 7 Nov 2002 19:45:54 +0000 (19:45 -0000)
libc/stdlib/strtod.c

index 629d412..7359d5c 100644 (file)
@@ -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));
-
-}