Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ namespace std

#ifndef INLINE
float atan2f(float y, float x);
float powf(float x, float y);
float atan(float x);
float sinf(float x);
float cosf(float x);
Expand All @@ -26,6 +27,11 @@ namespace std
return (float)atan2((double)y, (double)x);
}

inline float powf(float y, float x)
{
return (float)powf((double)y, (double)x);
}

inline float atan(float x)
{
return (float)atan((double)x);
Expand Down
Loading
Loading