summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1993-10-04 17:57:42 +0000
committerjtc <jtc@NetBSD.org>1993-10-04 17:57:42 +0000
commitae00f50a7ce2fc6ce5853a2d728a714b889cc550 (patch)
tree69b7ca1f1d5ac738cc2491b875a015c58cdc9634 /lib/libc/stdlib
parent46cc20d10eb8790ff6ea794faa0803915b0cf0d0 (diff)
Remove BUGS section, as atof() is now implemented in terms of strtod().
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/atof.316
1 files changed, 1 insertions, 15 deletions
diff --git a/lib/libc/stdlib/atof.3 b/lib/libc/stdlib/atof.3
index 125ff4ed0b6..25c0a3ebbe5 100644
--- a/lib/libc/stdlib/atof.3
+++ b/lib/libc/stdlib/atof.3
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)atof.3 6.4 (Berkeley) 6/29/91
-.\" $Id: atof.3,v 1.2 1993/08/01 07:44:35 mycroft Exp $
+.\" $Id: atof.3,v 1.3 1993/10/04 17:57:42 jtc Exp $
.\"
.Dd June 29, 1991
.Dt ATOF 3
@@ -72,17 +72,3 @@ The
.Fn atof
function conforms to
.St -ansiC .
-.Sh BUGS
-This manual page represents intent instead of actual practice.
-While it is intended that
-.Fn atof
-be implemented using
-.Xr strtod 3 ,
-this has not yet happened.
-In the current system,
-.Fn atof
-translates a string in the following form to a double: a string of
-leading white space, possibly followed by a sign (``+'' or ``-''),
-followed by a digit string which may contain one decimal point (``.''),
-which may be followed by either of the exponent flags (``E'' or ``e''),
-and lastly, followed by a signed or unsigned integer.