_exit.2, abs.3, atoi.3, strtod.3, strtol.3, strtoul.3: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2010-09-18 18:32:42 +02:00
parent 41a83e6fbf
commit e0a981113e
6 changed files with 37 additions and 9 deletions

View File

@ -43,9 +43,14 @@ Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.ad l
.BR _Exit ():
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
.RS 4
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.ad
.SH DESCRIPTION
The function
.BR _exit ()

View File

@ -52,9 +52,14 @@ Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.ad l
.BR llabs ():
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
.RS 4
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.ad
.SH DESCRIPTION
The
.BR abs ()

View File

@ -51,9 +51,13 @@ Feature Test Macro Requirements for glibc (see
.sp
.ad l
.BR atoll ():
_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
.RS 4
_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.ad b
.RE
.ad
.SH DESCRIPTION
The
.BR atoi ()

View File

@ -56,11 +56,17 @@ strtod, strtof, strtold \- convert ASCII string to floating-point number
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.ad l
.sp
.BR strtof (),
.BR strtold ():
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
.RS 4
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.RE
.ad l
.SH DESCRIPTION
The
.BR strtod (),

View File

@ -46,9 +46,13 @@ Feature Test Macro Requirements for glibc (see
.sp
.ad l
.BR strtoll ():
XOPEN_SOURCE >= 600 || _BSD_SOURCE || _SVID_SOURCE || _ISOC99_SOURCE; or
.RS 4
XOPEN_SOURCE >= 600 || _BSD_SOURCE || _SVID_SOURCE || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.ad b
.RE
.ad
.SH DESCRIPTION
The
.BR strtol ()

View File

@ -49,9 +49,13 @@ Feature Test Macro Requirements for glibc (see
.sp
.ad l
.BR strtoull ():
XOPEN_SOURCE >= 600 || _BSD_SOURCE || _SVID_SOURCE || _ISOC99_SOURCE; or
.RS 4
XOPEN_SOURCE >= 600 || _BSD_SOURCE || _SVID_SOURCE || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99
.ad b
.RE
.ad
.SH DESCRIPTION
The
.BR strtoul ()