Explorar el Código

Remove atof from strtod.o...

Manuel Novoa III hace 23 años
padre
commit
71a4f3c3fe
Se han modificado 1 ficheros con 0 adiciones y 7 borrados
  1. 0 7
      libc/stdlib/strtod.c

+ 0 - 7
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));
-
-}