From 52c7443932bd38d6708fcab2a8dfcc7ed3d678f2 Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Tue, 26 Apr 2016 19:48:12 +0100 Subject: glx: Don't enclose includes inside `extern "C" { }`. Ran `make check` inside src/glx to verify everything compiles and links correctly. https://bugs.freedesktop.org/show_bug.cgi?id=95158 Reviewed-by: Brian Paul --- src/glx/glxclient.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/glx/glxclient.h') diff --git a/src/glx/glxclient.h b/src/glx/glxclient.h index 7a249281081..141e46a31cd 100644 --- a/src/glx/glxclient.h +++ b/src/glx/glxclient.h @@ -57,6 +57,11 @@ #include "glxextensions.h" +#ifdef __cplusplus +extern "C" { +#endif + + #define GLX_MAJOR_VERSION 1 /* current version numbers */ #define GLX_MINOR_VERSION 4 @@ -824,4 +829,8 @@ indirect_create_context_attribs(struct glx_screen *base, const uint32_t *attribs, unsigned *error); +#ifdef __cplusplus +} +#endif + #endif /* !__GLX_client_h__ */ -- cgit v1.2.3