]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/cbrt.3
user_namespaces.7: Minor rewordings of recently added text
[thirdparty/man-pages.git] / man3 / cbrt.3
index d8f4cd6f946f0cb62f9757152f846aee4e00c280..946ee50eef8bf05a9e7e616f19bccf03dce6452e 100644 (file)
@@ -1,5 +1,6 @@
 .\" Copyright 1995 Jim Van Zandt <jrv@vanzandt.mv.com>
 .\"
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
 .\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
 .\" changed `square root' into `cube root' - aeb, 950919
 .\"
 .\" Modified 2002-07-27 Walter Harms
 .\" (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH CBRT 3  2008-07-29 "GNU"  "Linux Programmer's Manual"
+.TH CBRT 3  2017-09-15 "GNU"  "Linux Programmer's Manual"
 .SH NAME
 cbrt, cbrtf, cbrtl \- cube root function
 .SH SYNOPSIS
 .nf
 .B #include <math.h>
-.sp
+.PP
 .BI "double cbrt(double " x );
-.br
 .BI "float cbrtf(float " x );
-.br
 .BI "long double cbrtl(long double " x );
 .fi
-.sp
+.PP
 Link with \fI\-lm\fP.
-.sp
+.PP
 .in -4n
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .in
-.sp
+.PP
 .ad l
 .BR cbrt ():
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 || _ISOC99_SOURCE; or
-.I cc\ -std=c99
 .br
+.RS 4
+_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
+    || _XOPEN_SOURCE\ >=\ 500
+.\"    || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
+    || /* Since glibc 2.19: */ _DEFAULT_SOURCE
+    || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
+.RE
 .BR cbrtf (),
 .BR cbrtl ():
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
-.I cc\ -std=c99
+.RS 4
+_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
+    || /* Since glibc 2.19: */ _DEFAULT_SOURCE
+    || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
+.RE
 .ad b
 .SH DESCRIPTION
-The
-.BR cbrt ()
-function returns the (real) cube root of \fIx\fP.
+These functions return the (real) cube root of
+.IR x .
 This function cannot fail; every representable real value has a
 representable real cube root.
 .SH RETURN VALUE
 These functions return the cube root of
 .IR x .
-
+.PP
 If
 .I x
-is +0, -0, positive infinity, negative infinity, or NaN,
+is +0, \-0, positive infinity, negative infinity, or NaN,
 .I x
 is returned.
 .SH ERRORS
 No errors occur.
-.SH "CONFORMING TO"
-C99, POSIX.1-2001.
+.SH ATTRIBUTES
+For an explanation of the terms used in this section, see
+.BR attributes (7).
+.TS
+allbox;
+lbw24 lb lb
+l l l.
+Interface      Attribute       Value
+T{
+.BR cbrt (),
+.BR cbrtf (),
+.BR cbrtl ()
+T}     Thread safety   MT-Safe
+.TE
+.SH CONFORMING TO
+C99, POSIX.1-2001, POSIX.1-2008.
 .\" .BR cbrt ()
 .\" was a GNU extension. It is now a C99 requirement.
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR pow (3),
 .BR sqrt (3)