mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
24 lines
344 B
C
24 lines
344 B
C
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
|
#include <math.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma function(sinh)
|
|
#endif
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double sinh(double x)
|
|
{
|
|
if(x >= 0.0)
|
|
{
|
|
const double epos = exp(x);
|
|
return (epos - 1.0/epos) / 2.0;
|
|
}
|
|
else
|
|
{
|
|
const double eneg = exp(-x);
|
|
return (1.0/eneg - eneg) / 2.0;
|
|
}
|
|
}
|