ReactOS 0.4.15-dev-8102-g108db8f
atan2f.c
Go to the documentation of this file.
1
2#include <math.h>
3
4#ifdef _MSC_VER
5#pragma function(atan2f)
6#endif
7
9float
12 _In_ float x,
13 _In_ float y)
14{
15 return (float)atan2((double)x,(double)y);
16}
valarray< _Tp > atan2(const valarray< _Tp > &__x, const valarray< _Tp > &__y)
Definition: _valarray.h:928
#define __cdecl
Definition: accygwin.h:79
_Check_return_ float __cdecl atan2f(_In_ float x, _In_ float y)
Definition: atan2f.c:11
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
#define _Check_return_
Definition: ms_sal.h:557
#define _In_
Definition: ms_sal.h:308