ReactOS
0.4.16-dev-252-g9ccafe8
sinh.c
Go to the documentation of this file.
1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
#include <math.h>
3
4
#ifdef _MSC_VER
5
#pragma function(sinh)
6
#endif
7
8
/*
9
* @implemented
10
*/
11
double
sinh
(
double
x
)
12
{
13
if
(
x
>= 0.0)
14
{
15
const
double
epos =
exp
(
x
);
16
return
(epos - 1.0/epos) / 2.0;
17
}
18
else
19
{
20
const
double
eneg =
exp
(-
x
);
21
return
(1.0/eneg - eneg) / 2.0;
22
}
23
}
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
sinh
double sinh(double x)
Definition:
sinh.c:50
exp
DWORD exp
Definition:
msg.c:16058
sdk
lib
crt
math
sinh.c
Generated on Sun Nov 10 2024 06:13:25 for ReactOS by
1.9.6