egl: need stdio.h for non-Windows build too to avoid compiler warning
authorBrian Paul <brianp@vmware.com>
Thu, 13 Jan 2011 16:25:55 +0000 (09:25 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 13 Jan 2011 16:25:55 +0000 (09:25 -0700)
src/egl/main/eglstring.h

index 8a8c43c1eff83ac8a03cae04a47a07c1b550b36c..d4c89541362b359b66ba41dc5bf6d319d9a59f11 100644 (file)
@@ -2,9 +2,9 @@
 #define EGLSTRING_INCLUDED
 
 #include <string.h>
+#include <stdio.h>
 
 #ifdef _EGL_OS_WINDOWS
-#include <stdio.h>
 #define _eglstrcasecmp _stricmp
 #define _eglsnprintf _snprintf
 #else