1 2 #include <math.h> 3 4 _Check_return_ 5 float 6 __cdecl 7 atan2f( 8 _In_ float x, 9 _In_ float y) 10 { 11 return (float)atan2((double)x,(double)y); 12 } 13