mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-03 20:24:23 +03:00
af35cc6783
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
6 lines
82 B
C
6 lines
82 B
C
#include <math.h>
|
|
|
|
double sinh (double x)
|
|
{
|
|
return (exp(x) - exp(-x)) / 2;
|
|
} |