libc/newlib/libm/machine/spu/w_cosh.c

8 lines
90 B
C

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