OSDN Git Service

hidden_def/hidden_proto: convert all users (I hope) termios split, add some missing...
[uclinux-h8/uClibc.git] / libc / stdlib / strtof.c
index d25a67d..1586305 100644 (file)
  * to an internal conversion from a double to a float, thereby wasting a bunch
  * of precision.  But this is small, and works for now... */
 
-#define strtod __strtod
-
 #include <stdlib.h>
 
+libc_hidden_proto(strtod)
+
 float strtof (const char *str, char **endptr)
 {
     return(strtod(str,endptr));