diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-12-06 18:58:51 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-12-06 18:58:51 +0000 |
commit | c049dd5a782f36ca5f6eeb39e110d5774631aa1c (patch) | |
tree | 42a17e5eac109ebf1ada11bff536938b4d83e71c /newlib/libc/stdlib/atof.c | |
parent | e25e377eb323e9ac6f6ea3b23f57a68293be2ae9 (diff) | |
download | newlib-c049dd5a782f36ca5f6eeb39e110d5774631aa1c.zip newlib-c049dd5a782f36ca5f6eeb39e110d5774631aa1c.tar.gz newlib-c049dd5a782f36ca5f6eeb39e110d5774631aa1c.tar.bz2 |
2002-12-06 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdlib.h (strtof): New prototype (from C99).
(strtodf): Changed from prototype to macro which redefines
to strtof.
* libc/stdlib/atof.c: Change documentation to refer to strtof
instead of strtodf.
* libc/stdlib/atoff.c (atoff): Change to call strtof instead of
strtodf.
* libc/stdlib/strtod.c (strtodf): Renamed to strtof.
(strtof): New function.
* libm/test/convert.c (test_strtodf): Renamed to test_strtof which
calls strtof.
Diffstat (limited to 'newlib/libc/stdlib/atof.c')
-rw-r--r-- | newlib/libc/stdlib/atof.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/atof.c b/newlib/libc/stdlib/atof.c index cf4abdb..bba343c 100644 --- a/newlib/libc/stdlib/atof.c +++ b/newlib/libc/stdlib/atof.c @@ -36,7 +36,7 @@ of whitespace, or if the first non-whitespace character is something other than <<+>>, <<->>, <<.>>, or a digit. <<atof(<[s]>)>> is implemented as <<strtod(<[s]>, NULL)>>. -<<atoff(<[s]>)>> is implemented as <<strtodf(<[s]>, NULL)>>. +<<atoff(<[s]>)>> is implemented as <<strtof(<[s]>, NULL)>>. RETURNS <<atof>> returns the converted substring value, if any, as a |