]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/asinh.3
proc.5: Note kernel version for /proc/PID/smaps VmFlags "wf" flag
[thirdparty/man-pages.git] / man3 / asinh.3
index 06eb3ac51122eefa3c4aa587b466ddef7c3bbd7a..9f53112e088e853517ccf2b796ee923d2b013136 100644 (file)
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH ASINH 3  2015-04-19 "GNU"  "Linux Programmer's Manual"
+.TH ASINH 3  2017-09-15 "GNU"  "Linux Programmer's Manual"
 .SH NAME
 asinh, asinhf, asinhl \- inverse hyperbolic sine function
 .SH SYNOPSIS
 .nf
 .B #include <math.h>
-.sp
+.PP
 .BI "double asinh(double " x );
-.br
 .BI "float asinhf(float " x );
-.br
 .BI "long double asinhl(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 asinh ():
 .RS 4
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500
+_ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
+    || _XOPEN_SOURCE\ >=\ 500
 .\"    || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
-|| _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
-.br
-or
-.I cc\ -std=c99
+    || /* Since glibc 2.19: */ _DEFAULT_SOURCE
+    || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
 .RE
-.br
+.PP
 .BR asinhf (),
 .BR asinhl ():
 .RS 4
-_BSD_SOURCE || _SVID_SOURCE || _ISOC99_SOURCE ||
-_POSIX_C_SOURCE\ >=\ 200112L
-.br
-or
-.I cc\ -std=c99
+_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
@@ -82,15 +77,15 @@ that is the value whose hyperbolic sine is
 .SH RETURN VALUE
 On success, these functions return the inverse hyperbolic sine of
 .IR x .
-
+.PP
 If
 .I x
 is a NaN, a NaN is returned.
-
+.PP
 If
 .I x
 is +0 (\-0), +0 (\-0) is returned.
-
+.PP
 If
 .I x
 is positive infinity (negative infinity),
@@ -116,11 +111,11 @@ T}        Thread safety   MT-Safe
 .TE
 .SH CONFORMING TO
 C99, POSIX.1-2001, POSIX.1-2008.
-
+.PP
 The variant returning
 .I double
 also conforms to
-SVr4, 4.3BSD, C89.
+SVr4, 4.3BSD.
 .SH SEE ALSO
 .BR acosh (3),
 .BR atanh (3),