windows-nt/Source/XPSP1/NT/base/crts/fpw32/tran/ia64/tanhf.c
2020-09-26 16:20:57 +08:00

12 lines
158 B
C

#include <math.h>
#include <trans.h>
#if defined(_M_IA64)
#pragma function(tanhf)
#endif
float __cdecl tanhf (float x)
{
return (float)tanh((double) x);
}