diff options
author | Brian Paul <[email protected]> | 2011-01-13 09:25:55 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-13 09:25:55 -0700 |
commit | ca31c596e8acf64cbae86b052bb5634790a540ce (patch) | |
tree | 69609fc9ca53b0edfc9c3b6bcdf8cfe44e169f23 /src/egl/main | |
parent | dad914f6b2e5862a5174133f11276e975867be04 (diff) |
egl: need stdio.h for non-Windows build too to avoid compiler warning
Diffstat (limited to 'src/egl/main')
-rw-r--r-- | src/egl/main/eglstring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglstring.h b/src/egl/main/eglstring.h index 8a8c43c1eff..d4c89541362 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 |