atoi.3: Remove ancient Linux libc details

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-06-29 10:31:41 +02:00
parent 47aa42e7ca
commit ee5f0bfd2a
1 changed files with 9 additions and 13 deletions

View File

@ -83,9 +83,6 @@ functions behave the same as
.BR atoi (),
except that they convert the initial portion of the
string to their return type of \fIlong\fP or \fIlong long\fP.
.BR atoq ()
is an obsolete name for
.BR atoll ().
.SH RETURN VALUE
The converted value.
.SH ATTRIBUTES
@ -108,18 +105,17 @@ POSIX.1-1996 include the functions
and
.BR atol ()
only.
.BR atoq ()
is a GNU extension.
.SH NOTES
The nonstandard
Linux libc provided
.BR atoq ()
function is not present in libc 4.6.27
or glibc 2, but is present in libc5 and libc 4.7 (though only as an
inline function in \fI<stdlib.h>\fP until libc 5.4.44).
The
.BR atoll ()
function is present in glibc 2 since version 2.0.2, but
not in libc4 or libc5.
as an obsolete name for
.BR atoll ();
.BR atoq ()
is not provided by glibc.
.\" The
.\" .BR atoll ()
.\" function is present in glibc 2 since version 2.0.2, but
.\" not in libc4 or libc5.
.SH SEE ALSO
.BR atof (3),
.BR strtod (3),