newlib/winsup/mingw/mingwex/math/coshf.c

4 lines
69 B
C

#include <math.h>
float coshf (float x)
{return (float) cosh (x);}