From: Brian Paul Date: Tue, 24 Feb 2015 16:33:41 +0000 (-0700) Subject: mesa: remove ceilf, floorf macros X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbb2d8403256dd16fb55b4059f396c42cdc5008c;p=mesa.git mesa: remove ceilf, floorf macros Reviewed-by: Matt Turner --- diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 5e40bd0b063..da373b04430 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -97,8 +97,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type; #if (!defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE < 600)) && !defined(_ISOC99_SOURCE) \ && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \ && (!defined(_MSC_VER) || (_MSC_VER < 1400)) -#define ceilf(f) ((float) ceil(f)) -#define floorf(f) ((float) floor(f)) #define sqrtf(f) ((float) sqrt(f)) #endif