Manuel Novoa III 23 лет назад
Родитель
Сommit
71a4f3c3fe
1 измененных файлов с 0 добавлено и 7 удалено
  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));
-
-}