Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
158 B

  1. #include <math.h>
  2. #include <trans.h>
  3. #if defined(_M_IA64)
  4. #pragma function(tanhf)
  5. #endif
  6. float __cdecl tanhf (float x)
  7. {
  8. return (float)tanh((double) x);
  9. }