diff options
author | Mark Janes <[email protected]> | 2015-03-05 10:14:16 -0800 |
---|---|---|
committer | Matt Turner <[email protected]> | 2015-03-05 10:16:25 -0800 |
commit | 5f9ee6a02f54864df166e5dcc7303771d4eac9b3 (patch) | |
tree | 4e01808f6d0abf4c33bc37c9ed59ddd9a9e8ce9a /src/mesa/tnl | |
parent | c97e902a1a69892147e7649581951747f03afaee (diff) |
mesa/x86: missing stdio inclusions
Several patches added include statements where required by the m64
build. Some files are only compiled for m32, and require similar
changes.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_vertex_sse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vertex_sse.c b/src/mesa/tnl/t_vertex_sse.c index 93128fbe6b8..963432c48a9 100644 --- a/src/mesa/tnl/t_vertex_sse.c +++ b/src/mesa/tnl/t_vertex_sse.c @@ -25,6 +25,8 @@ * Keith Whitwell <[email protected]> */ +#include <stdio.h> + #include "main/glheader.h" #include "main/context.h" #include "main/colormac.h" |