From: Brian Paul Date: Tue, 24 Feb 2015 16:32:27 +0000 (-0700) Subject: mesa: remove expf macro X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bdd0402ca3400328b38a8cf02b501852a037b957;p=mesa.git mesa: remove expf macro Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index ae89d59f15f..5e40bd0b063 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -98,7 +98,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type; && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \ && (!defined(_MSC_VER) || (_MSC_VER < 1400)) #define ceilf(f) ((float) ceil(f)) -#define expf(f) ((float) exp(f)) #define floorf(f) ((float) floor(f)) #define sqrtf(f) ((float) sqrt(f))