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 <mattst88@gmail.com>
This commit is contained in:
Mark Janes 2015-03-05 10:14:16 -08:00 committed by Matt Turner
parent c97e902a1a
commit 5f9ee6a02f
2 changed files with 4 additions and 0 deletions

View file

@ -25,6 +25,8 @@
* Keith Whitwell <keithw@vmware.com>
*/
#include <stdio.h>
#include "main/glheader.h"
#include "main/context.h"
#include "main/colormac.h"

View file

@ -1,6 +1,8 @@
#ifdef USE_X86_ASM
#if defined(__i386__) || defined(__386__)
#include <stdio.h>
#include "main/imports.h"
#include "x86sse.h"