From 07421c3cd4e45fdb13773d01c48381e0ec2afcbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Wed, 26 Oct 2016 20:13:56 +0200 Subject: [PATCH] Fix build on some platform missing int64 types in their headers --- libretro-common/include/glsym/glsym_es2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/include/glsym/glsym_es2.h b/libretro-common/include/glsym/glsym_es2.h index 0255d48209..81b3035f54 100644 --- a/libretro-common/include/glsym/glsym_es2.h +++ b/libretro-common/include/glsym/glsym_es2.h @@ -23,7 +23,7 @@ typedef void *GLeglImageOES; typedef GLint GLfixed; #endif -#if (__STDC_VERSION__ <= 199409L) || (OSX && !MAC_OS_X_VERSION_10_7) +#if (__STDC_VERSION__ <= 199901L) || (OSX && !MAC_OS_X_VERSION_10_7) typedef long long int GLint64; typedef unsigned long long int GLuint64; typedef unsigned long long int GLuint64EXT;