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

4 lines
69 B
C

#include <math.h>
float tanhf (float x)
{return (float) tanh (x);}