Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members   Related Pages  

math.h

Go to the documentation of this file.
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

Generated on Thu Dec 9 17:13:24 2004 for fl by doxygen1.2.18