1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-01-29 17:35:06 +00:00
2012-03-27 01:51:53 +02:00

8 lines
90 B
C

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