diff options
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 9dee565aa58..3384583106a 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -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. */ |