diff options
Diffstat (limited to 'src/egl')
-rw-r--r-- | src/egl/main/eglcompiler.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/egl/main/eglcompiler.h b/src/egl/main/eglcompiler.h index 53dab54384a..5ea83d6145a 100644 --- a/src/egl/main/eglcompiler.h +++ b/src/egl/main/eglcompiler.h @@ -37,7 +37,8 @@ /** * Get standard integer types */ -#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) +#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) || \ + (defined(_MSC_VER) && _MSC_VER >= 1600) # include <stdint.h> #elif defined(_MSC_VER) typedef __int8 int8_t; |