windows-nt/Source/XPSP1/NT/base/crts/fpw32/tran/ia64/tanhf.c

12 lines
158 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
#include <math.h>
#include <trans.h>
#if defined(_M_IA64)
#pragma function(tanhf)
#endif
float __cdecl tanhf (float x)
{
return (float)tanh((double) x);
}