소스 검색

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