diff options
author | Brian Paul <[email protected]> | 2015-02-24 15:11:45 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-24 17:10:28 -0700 |
commit | f847ddb64dfe7d0e84354b30b7551d83fe3463c9 (patch) | |
tree | d3623572585f52989a74bdd8fcf79992a64d7cf3 /src/mesa/main/imports.h | |
parent | 612143b2d0b7ec84d43049908f454d79bebeeb5f (diff) |
mesa: move signbit() macro to c99_math.h
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r-- | src/mesa/main/imports.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index a6e4d9eafb6..82b3213dd90 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -99,14 +99,6 @@ typedef union { GLfloat f; GLint i; GLuint u; } fi_type; /*@}*/ -/* - * signbit() is a macro on Linux. Not available on Windows. - */ -#ifndef signbit -#define signbit(x) ((x) < 0.0f) -#endif - - /*** *** LOG2: Log base 2 of float ***/ |