_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)): .BR feature_test_macros (7)):
.in .in
.sp .sp
.ad l
.BR _Exit (): .BR _Exit ():
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or .RS 4
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99 .I cc\ -std=c99
.ad
.SH DESCRIPTION .SH DESCRIPTION
The function The function
.BR _exit () .BR _exit ()

View File

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

View File

@ -51,9 +51,13 @@ Feature Test Macro Requirements for glibc (see
.sp .sp
.ad l .ad l
.BR atoll (): .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 .I cc\ -std=c99
.ad b .RE
.ad
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR atoi () .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 Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)): .BR feature_test_macros (7)):
.in .in
.ad l
.sp .sp
.BR strtof (), .BR strtof (),
.BR strtold (): .BR strtold ():
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or .RS 4
_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE;
.br
or
.I cc\ -std=c99 .I cc\ -std=c99
.RE
.ad l
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR strtod (), .BR strtod (),

View File

@ -46,9 +46,13 @@ Feature Test Macro Requirements for glibc (see
.sp .sp
.ad l .ad l
.BR strtoll (): .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 .I cc\ -std=c99
.ad b .RE
.ad
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR strtol () .BR strtol ()

View File

@ -49,9 +49,13 @@ Feature Test Macro Requirements for glibc (see
.sp .sp
.ad l .ad l
.BR strtoull (): .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 .I cc\ -std=c99
.ad b .RE
.ad
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR strtoul () .BR strtoul ()