mesa: remove ceilf, floorf macros

Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Brian Paul 2015-02-24 09:33:41 -07:00
parent bdd0402ca3
commit bbb2d84032
1 changed files with 0 additions and 2 deletions

View File

@ -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