[CRT]
Add simple C implementations for _chgsignf, _copysignf, _hypotf, asinf, atan2f, atanf, coshf, expf, log10f, modff, sinhf, tanf, tanhf
svn path=/trunk/; revision=67717
2015-05-14 19:06:00 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
2021-07-10 11:24:42 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma function(sinhf)
|
|
|
|
#endif
|
|
|
|
|
[CRT]
Add simple C implementations for _chgsignf, _copysignf, _hypotf, asinf, atan2f, atanf, coshf, expf, log10f, modff, sinhf, tanf, tanhf
svn path=/trunk/; revision=67717
2015-05-14 19:06:00 +00:00
|
|
|
_Check_return_
|
|
|
|
float
|
|
|
|
__cdecl
|
|
|
|
sinhf(
|
|
|
|
_In_ float x)
|
|
|
|
{
|
|
|
|
return (float)sinh((double)x);
|
|
|
|
}
|