2025-04-27 07:49:33 -04:00

12 lines
169 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);
}