From c04573233cd2110ed5866e723636719549afdcc9 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Tue, 11 Apr 2017 18:54:26 +0100 Subject: [PATCH] add missing extern "C" guard. --- gfx/common/gl_common.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gfx/common/gl_common.h b/gfx/common/gl_common.h index e4e1c06fb9..46514d99f5 100644 --- a/gfx/common/gl_common.h +++ b/gfx/common/gl_common.h @@ -34,6 +34,8 @@ #include "../video_context_driver.h" #include "../drivers/gl_symlinks.h" +RETRO_BEGIN_DECLS + typedef struct gl { int version_major; @@ -187,4 +189,6 @@ void gl_load_texture_image(GLenum target, GLenum type, const GLvoid * data); +RETRO_END_DECLS + #endif