2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
10 /*****************************************************************************
21 Convert a string of digits into a double.
24 str - The string which should be converted. Leading
25 whitespace are ignored. The number may be prefixed
29 The value of string str.
38 atoi(), atol(), strtod(), strtol(), strtoul()
42 ******************************************************************************/
44 return strtod (str
, (char **)NULL
);
49 void atof(const char * str
)
54 #endif /* AROS_NOFPU */