diff options
author | Brian Paul <[email protected]> | 2015-02-24 17:56:45 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2015-02-26 08:38:39 -0700 |
commit | 95855dd32f4228d3c99e040b76f4357593b4b5a4 (patch) | |
tree | 6b95aa6734b4d50e4f7b1e96db23634349906895 /src/mesa/main/imports.c | |
parent | 4f25a180115d6f7a6149ba8285a394e10aa04ef2 (diff) |
mesa: don't include math.h in compiler.h
Not needed by anything in that header. Include math.h or c99_math.h
where needed instead.
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 896b11e8233..752cf5a429f 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -43,6 +43,7 @@ */ #include <stdarg.h> +#include "c99_math.h" #include "imports.h" #include "context.h" #include "mtypes.h" |