summaryrefslogtreecommitdiff
path: root/src/egl
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-01-13 09:25:55 -0700
committerBrian Paul <brianp@vmware.com>2011-01-13 09:25:55 -0700
commitca31c596e8acf64cbae86b052bb5634790a540ce (patch)
tree69609fc9ca53b0edfc9c3b6bcdf8cfe44e169f23 /src/egl
parentdad914f6b2e5862a5174133f11276e975867be04 (diff)
egl: need stdio.h for non-Windows build too to avoid compiler warning
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/main/eglstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglstring.h b/src/egl/main/eglstring.h
index 8a8c43c1ef..d4c8954136 100644
--- a/src/egl/main/eglstring.h
+++ b/src/egl/main/eglstring.h
@@ -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