about summary refs log tree commit diff stats
path: root/src/room_chat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/room_chat.h')
-rw-r--r--src/room_chat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/room_chat.h b/src/room_chat.h
index d455e03c..d62383c9 100644
--- a/src/room_chat.h
+++ b/src/room_chat.h
@@ -20,6 +20,9 @@
  *
  */
 
+#ifndef ROOM_CHAT_H
+#define ROOM_CHAT_H
+
 #include <glib.h>
 
 void room_join(const char * const jid, const char * const nick);
@@ -33,3 +36,5 @@ GList * room_get_roster(const char * const jid);
 void room_set_roster_received(const char * const jid);
 gboolean room_get_roster_received(const char * const jid);
 void room_remove_from_roster(const char * const jid, const char * const nick);
+
+#endif