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

4 lines
69 B
C
Raw Normal View History

#include <math.h>
float sinhf (float x)
{return (float) sinh (x);}