diff options
author | DJ Delorie <dj@redhat.com> | 2001-09-26 18:45:50 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-09-26 18:45:50 +0000 |
commit | 39423523167c47f72822dbb9eb3ab4a0dfeafe68 (patch) | |
tree | b437d1ed0d3cb7e6a0a67e5dd30ef19abbedb95e /libiberty/strtod.c | |
parent | 4e6667ac4f987fecbcf576513c70485a4718712e (diff) | |
download | binutils-gdb-39423523167c47f72822dbb9eb3ab4a0dfeafe68.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty/strtod.c')
-rw-r--r-- | libiberty/strtod.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libiberty/strtod.c b/libiberty/strtod.c index 90292c224b6..2f0a0762fc3 100644 --- a/libiberty/strtod.c +++ b/libiberty/strtod.c @@ -22,6 +22,21 @@ the resulting executable to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the executable file might be covered by the GNU General Public License. */ +/* + +@deftypefn Supplemental double strtod (const char *@var{string}, char **@var{endptr}) + +This ANSI C function converts the initial portion of @var{string} to a +@code{double}. If @var{endptr} is not NULL, a pointer to the +character after the last character used in the conversion is stored in +the location referenced by @var{endptr}. If no conversion is +performed, zero is returned and the value of @var{string} is stored in +the location referenced by @var{endptr}. + +@end deftypefn + +*/ + #include "ansidecl.h" #include "safe-ctype.h" |