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