kolibrios/programs/develop/libraries/newlib/math/coshf.c

4 lines
72 B
C
Raw Normal View History

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