mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
6 lines
82 B
C
6 lines
82 B
C
|
#include <math.h>
|
||
|
|
||
|
double cosh (double x)
|
||
|
{
|
||
|
return (exp(x) + exp(-x)) / 2;
|
||
|
}
|