glx: Add missing include guards
authorMichał Janiszewski <janisozaur+signed@gmail.com>
Mon, 29 Oct 2018 21:51:00 +0000 (15:51 -0600)
committerBrian Paul <brianp@vmware.com>
Tue, 30 Oct 2018 12:19:10 +0000 (06:19 -0600)
Signed-off-by: Michał Janiszewski <janisozaur+signed@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/glx/dri2_priv.h
src/glx/drisw_priv.h
src/glx/glx_error.h

index 30ab2cdd871984d751d47c0accd9af82192bba81..a93551b146dccfb33af8028de6602d09c76800c9 100644 (file)
@@ -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
index a670da2d33bfec4b3b8c7b2378d254912ce6ed8f..259fc864f6ad00c2da30698ffcb86defbfd8b6e8 100644 (file)
@@ -23,6 +23,9 @@
  * SOFTWARE.
  */
 
+#ifndef DRISW_PRIV_H
+#define DRISW_PRIV_H
+
 #include <X11/extensions/XShm.h>
 
 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
index 5d3992672e00c869cca01e0bf7db5a731073a211..6a2f32aa56e510bbef756922d38ffba336a095b8 100644 (file)
  promote the sale, use or other dealings in this Software without
  prior written authorization.
 */
+
+#ifndef GLX_ERROR_H
+#define GLX_ERROR_H
+
 #include <stdbool.h>
 #include <stdint.h>
 #include <X11/Xlib.h>
@@ -45,3 +49,5 @@ _X_HIDDEN void __glXSendErrorForXcb(Display * dpy,
 #ifdef __cplusplus
 }
 #endif
+
+#endif