Vegastrike 0.5.1 rc1  1.0
Original sources for Vegastrike Evolved
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
macosx_math.h
Go to the documentation of this file.
1 #ifndef MACOSX_MATH
2 #define MACOSX_MATH
3 extern int float_to_int( float );
5 extern int double_to_int( float ); //works on *any* float
6 #if defined (__APPLE__) || defined (MACOSX)
7  #include <math.h>
8 extern float sqrtf( float v );
9 extern float cosf( float v );
10 extern float sinf( float v );
11 extern float tanf( float v );
12 extern float powf( float v, float p );
13 #endif
14 
15 #endif
16