forked from KolibriOS/kolibrios
release ktcc 0.9.26
git-svn-id: svn://kolibrios.org@6424 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
6
programs/develop/ktcc/trunk/libc/math/sinh.c
Normal file
6
programs/develop/ktcc/trunk/libc/math/sinh.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <math.h>
|
||||
|
||||
double sinh (double x)
|
||||
{
|
||||
return (exp(x) - exp(-x)) / 2;
|
||||
}
|
Reference in New Issue
Block a user