tanhf.c (c2c66aff) tanhf.c (aea4cfba)
1
2#include <math.h>
3
1
2#include <math.h>
3
4#ifdef _MSC_VER
5#pragma function(tanhf)
6#endif
7
4_Check_return_
5float
6__cdecl
7tanhf(
8 _In_ float x)
9{
10 return (float)tanh((double)x);
11}
8_Check_return_
9float
10__cdecl
11tanhf(
12 _In_ float x)
13{
14 return (float)tanh((double)x);
15}