浏览代码

Remove atof from strtod.o...

Manuel Novoa III 23 年之前
父节点
当前提交
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));
-
-}