12 lines
158 B
C
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);
|
|
}
|