8 lines
90 B
C
Raw Normal View History

#include <math.h>
#include "headers/cosh.h"
double cosh(double x)
{
return _cosh(x);
}