kolibrios/programs/develop/ktcc/trunk/libc/math/sinh.c

6 lines
82 B
C
Raw Normal View History

#include <math.h>
double sinh (double x)
{
return (exp(x) - exp(-x)) / 2;
}