00001 #ifndef fl_math_h 00002 #define fl_math_h 00003 00004 00005 #include <math.h> 00006 00007 00008 inline float 00009 fabs (float a) 00010 { 00011 return fabsf (a); 00012 } 00013 00014 inline float 00015 sqrt (float a) 00016 { 00017 return sqrtf (a); 00018 } 00019 00020 inline float 00021 pow (float a, float b) 00022 { 00023 return powf (a, b); 00024 } 00025 00026 00027 #endif
1.2.18