OSDN Git Service

Update perkamon to LDP v3.79
[linuxjm/LDP_man-pages.git] / original / man3 / sinh.3
index 6e81e65..317a904 100644 (file)
@@ -2,6 +2,7 @@
 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
 .\"     <mtk.manpages@gmail.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.
@@ -21,6 +22,7 @@
 .\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
 .\" References consulted:
 .\"     Linux libc source code
@@ -31,7 +33,7 @@
 .\" Modified 2002-07-27 by Walter Harms
 .\"    (walter.harms@informatik.uni-oldenburg.de)
 .\"
-.TH SINH 3  2008-08-05 "" "Linux Programmer's Manual"
+.TH SINH 3  2010-09-20 "" "Linux Programmer's Manual"
 .SH NAME
 sinh, sinhf, sinhl \- hyperbolic sine function
 .SH SYNOPSIS
@@ -55,19 +57,26 @@ Feature Test Macro Requirements for glibc (see
 .ad l
 .BR sinhf (),
 .BR sinhl ():
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
+.RS 4
+_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
+_POSIX_C_SOURCE\ >=\ 200112L;
+.br
+or
 .I cc\ -std=c99
-.ad b
+.RE
+.ad
 .SH DESCRIPTION
 The
 .BR sinh ()
-function returns the hyperbolic sine of \fIx\fP, which
+function returns the hyperbolic sine of
+.IR x ,
+which
 is defined mathematically as:
 .nf
 
     sinh(x) = (exp(x) \- exp(\-x)) / 2
 .fi
-.SH "RETURN VALUE"
+.SH RETURN VALUE
 On success, these functions return the hyperbolic sine of
 .IR x .
 
@@ -112,16 +121,25 @@ is set to
 An overflow floating-point exception
 .RB ( FE_OVERFLOW )
 is raised.
-.SH "CONFORMING TO"
+.SH CONFORMING TO
 C99, POSIX.1-2001.
 The variant returning
 .I double
 also conforms to
 SVr4, 4.3BSD, C89.
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR acosh (3),
 .BR asinh (3),
 .BR atanh (3),
 .BR cosh (3),
 .BR csinh (3),
 .BR tanh (3)
+.SH COLOPHON
+This page is part of release 3.78 of the Linux
+.I man-pages
+project.
+A description of the project,
+information about reporting bugs,
+and the latest version of this page,
+can be found at
+\%http://www.kernel.org/doc/man\-pages/.