mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-05 21:24:24 +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;
|
||
|
}
|