mesa: replace FABSF with fabsf
[mesa.git] / src / mesa / main / imports.h
index 9dee565aa5898f66c4738affd1dc35f82de14dd0..3384583106a1b24d943efbaff9f4ff7165b49295 100644 (file)
@@ -203,17 +203,6 @@ static inline GLfloat LOG2(GLfloat x)
 #endif
 
 
-/***
- *** FABSF: absolute value of float
- ***/
-#if defined(__gnu_linux__)
-/* C99 functions */
-#define FABSF(x)   fabsf(x)
-#else
-#define FABSF(x)   ((GLfloat) fabs(x))
-#endif
-
-
 /**
  * Convert float to int by rounding to nearest integer, away from zero.
  */