]> 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 14bd3c59838f1a63704597cdf563cb6f1687fc9d..9f53112e088e853517ccf2b796ee923d2b013136 100644 (file)
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH ASINH 3  2017-07-13 "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
@@ -62,7 +60,7 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
     || /* Since glibc 2.19: */ _DEFAULT_SOURCE
     || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
 .RE
-
+.PP
 .BR asinhf (),
 .BR asinhl ():
 .RS 4
@@ -79,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),
@@ -113,7 +111,7 @@ 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