reactos/reactos/lib/sdk/crt/math/atanf.c
Timo Kreuzer 6115da1a2a [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

11 lines
113 B
C

#include <math.h>
_Check_return_
float
__cdecl
atanf(
_In_ float x)
{
return (float)atan((double)x);
}