SWORD25: Extended Mac OSX compilation fix for sqrtf and atan2f

svn-id: r53426
This commit is contained in:
Filippos Karapetis 2010-10-13 14:40:32 +00:00
parent 090540504d
commit a3d3e94a8d

View File

@ -59,6 +59,8 @@
#define powf(x,y) ((float)pow(x,y))
#define floorf(x) ((float)floor(x))
#define fabsf(x) ((float)fabs(x))
#define sqrtf(x) ((float)sqrt(x))
#define atan2f(x) ((float)atan2(x))
#endif
namespace Lua {