commit 33ee03b
Michael Forney
·
2013-09-14 02:38:39 +0000 UTC
parent 1fa2e95
xkb: Add include guards
1 files changed,
+5,
-0
+5,
-0
1@@ -1,6 +1,9 @@
2 #include <stdbool.h>
3 #include <xkbcommon/xkbcommon.h>
4
5+#ifndef SWC_XKB_H
6+#define SWC_XKB_H 1
7+
8 struct swc_xkb
9 {
10 struct xkb_context * context;
11@@ -26,3 +29,5 @@ void swc_xkb_finish(struct swc_xkb * xkb);
12
13 bool swc_xkb_update_keymap(struct swc_xkb * xkb);
14
15+#endif
16+