1 #include <math.h>
2 #include "headers/atan2f.h"
3 
atan2f(float y,float x)4 float atan2f(float y, float x)
5 {
6   return _atan2f(y, x);
7 }
8