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

4 lines
72 B
C
Raw Normal View History

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