ReactOS 0.4.16-dev-141-g4c84e19
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 */
11double 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}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
double sinh(double x)
Definition: sinh.c:50
DWORD exp
Definition: msg.c:16058