aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/beaver-util.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1479e6b..8fea91d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-03-18 Rob Bradford <rob@openedhand.com>
+
+ * src/beaver-util.h:
+ Add header guards.
+
2008-03-17 Rob Bradford <rob@openedhand.com>
* src/Makefile.am:
diff --git a/src/beaver-util.h b/src/beaver-util.h
index 842db77..c6f5ef0 100644
--- a/src/beaver-util.h
+++ b/src/beaver-util.h
@@ -15,6 +15,9 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#ifndef _BEAVER_UTIL
+#define _BEAVER_UTIL
+
#include <config.h>
#include <glib-object.h>
@@ -25,3 +28,5 @@ void beaver_util_message_view_buffer_flushed_cb (IAnjutaMessageView *view,
gchar *data, gpointer userdata);
gchar **beaver_util_strv_concat (gchar **strv_1, gchar **strv_2);
gchar **beaver_util_strv_joinv (gchar **strv_1, ...);
+
+#endif /* _BEAVER_UTIL */