From f847ddb64dfe7d0e84354b30b7551d83fe3463c9 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 24 Feb 2015 15:11:45 -0700 Subject: mesa: move signbit() macro to c99_math.h Reviewed-by: Matt Turner --- src/mesa/main/imports.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/mesa/main/imports.h') 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 ***/ -- cgit v1.2.3