mesa: remove sqrtf macro
authorBrian Paul <brianp@vmware.com>
Tue, 24 Feb 2015 22:03:44 +0000 (15:03 -0700)
committerBrian Paul <brianp@vmware.com>
Wed, 25 Feb 2015 00:10:28 +0000 (17:10 -0700)
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/mesa/main/imports.h

index df6a3fe994ab078403d1498a81ff8c4faf07f013..7fb9381e546f4c11e1559e254aa9afd2d1cf495a 100644 (file)
@@ -90,17 +90,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type;
 #define DEG2RAD (M_PI/180.0)
 
 
-/**
- * \name Work-arounds for platforms that lack C99 math functions
- */
-/*@{*/
-#if (!defined(_XOPEN_SOURCE) || (_XOPEN_SOURCE < 600)) && !defined(_ISOC99_SOURCE) \
-   && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \
-   && (!defined(_MSC_VER) || (_MSC_VER < 1400))
-
-#define sqrtf(f) ((float) sqrt(f))
-#endif
-
 #if defined(_MSC_VER)
 #if _MSC_VER < 1800  /* Not req'd on VS2013 and above */
 static inline int isblank(int ch) { return ch == ' ' || ch == '\t'; }