summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-04-19 23:37:12 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-05-02 11:24:44 +0200
commit9605351863d395e9aa1aa7d3080124dcfdd9d3e2 (patch)
treece04dc22706482663b7e4f7be0a5aed97ecdb426 /common
parent60373e01fa9273751b037998329645072e21e837 (diff)
downloadspice-9605351863d395e9aa1aa7d3080124dcfdd9d3e2.tar.gz
spice-9605351863d395e9aa1aa7d3080124dcfdd9d3e2.tar.xz
spice-9605351863d395e9aa1aa7d3080124dcfdd9d3e2.zip
common: add missing header guards to gl_canvas.h
Diffstat (limited to 'common')
-rw-r--r--common/gl_canvas.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/gl_canvas.h b/common/gl_canvas.h
index ff3fba06..4a156689 100644
--- a/common/gl_canvas.h
+++ b/common/gl_canvas.h
@@ -20,6 +20,9 @@
#include "canvas_base.h"
#include "region.h"
+#ifndef _H__GL_CANVAS
+#define _H__GL_CANVAS
+
#ifdef __cplusplus
extern "C" {
#endif
@@ -42,3 +45,5 @@ void gl_canvas_init();
#ifdef __cplusplus
}
#endif
+
+#endif