From ec994ca0fc2b853c00d9b54de7c87715ec605c2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 29 Oct 2018 15:51:00 -0600 Subject: [PATCH] glx: Add missing include guards MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Janiszewski Reviewed-by: Brian Paul --- src/glx/dri2_priv.h | 5 +++++ src/glx/drisw_priv.h | 5 +++++ src/glx/glx_error.h | 6 ++++++ 3 files changed, 16 insertions(+) diff --git a/src/glx/dri2_priv.h b/src/glx/dri2_priv.h index 30ab2cdd871..a93551b146d 100644 --- a/src/glx/dri2_priv.h +++ b/src/glx/dri2_priv.h @@ -30,6 +30,9 @@ * Kristian Høgsberg (krh@redhat.com) */ +#ifndef DRI2_PRIV_H +#define DRI2_PRIV_H + #ifdef __cplusplus extern "C" { #endif @@ -82,3 +85,5 @@ dri2_interop_export_object(struct glx_context *ctx, #ifdef __cplusplus } #endif + +#endif diff --git a/src/glx/drisw_priv.h b/src/glx/drisw_priv.h index a670da2d33b..259fc864f6a 100644 --- a/src/glx/drisw_priv.h +++ b/src/glx/drisw_priv.h @@ -23,6 +23,9 @@ * SOFTWARE. */ +#ifndef DRISW_PRIV_H +#define DRISW_PRIV_H + #include struct drisw_display @@ -73,3 +76,5 @@ drisw_query_renderer_integer(struct glx_screen *base, int attribute, _X_HIDDEN int drisw_query_renderer_string(struct glx_screen *base, int attribute, const char **value); + +#endif diff --git a/src/glx/glx_error.h b/src/glx/glx_error.h index 5d3992672e0..6a2f32aa56e 100644 --- a/src/glx/glx_error.h +++ b/src/glx/glx_error.h @@ -26,6 +26,10 @@ promote the sale, use or other dealings in this Software without prior written authorization. */ + +#ifndef GLX_ERROR_H +#define GLX_ERROR_H + #include #include #include @@ -45,3 +49,5 @@ _X_HIDDEN void __glXSendErrorForXcb(Display * dpy, #ifdef __cplusplus } #endif + +#endif -- 2.30.2