From f7d5d9d23f5dc896842ed23054272c24a6ca5c51 Mon Sep 17 00:00:00 2001
From: Patrick McDermott <pj@pehjota.net>
Date: Sat, 16 Sep 2017 16:23:13 -0400
Subject: src/*.h: Add include guards

---
diff --git a/src/tab.h b/src/tab.h
index 073049c..1205559 100644
--- a/src/tab.h
+++ b/src/tab.h
@@ -19,6 +19,9 @@
  * along with Marquee.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef MQ_TAB_H
+#define MQ_TAB_H
+
 #include <gtk.h>
 
 #include "tab-chrome.h"
@@ -33,3 +36,5 @@ mq_tab_new(gchar *uri);
 
 GtkWidget *
 mq_tab_get_container(MqTab *tab);
+
+#endif
diff --git a/src/window.h b/src/window.h
index 0741423..f3a792f 100644
--- a/src/window.h
+++ b/src/window.h
@@ -19,6 +19,9 @@
  * along with Marquee.  If not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef MQ_WINDOW_H
+#define MQ_WINDOW_H
+
 #include <gtk.h>
 
 typedef struct {
@@ -28,3 +31,5 @@ typedef struct {
 
 MqWindow *
 mq_window_new(gchar **uris);
+
+#endif
--
cgit v0.9.1