aboutsummaryrefslogtreecommitdiffstats
path: root/chat.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2009-10-22 22:55:23 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2009-10-22 22:55:23 +0100
commitb75acf6367400ff88428618719cefbbee648b0cb (patch)
tree755665b39b0460ac557edabe0e7e66301156069a /chat.h
parent2e44b1f12fb58a6969a8fbaf2946d6ecdace484a (diff)
Don't include chat.h from bitlbee.h. make install-dev doesn't install
chat.h and it shouldn't ... but things broke because bitlbee.h includes it. Fixes #534.
Diffstat (limited to 'chat.h')
-rw-r--r--chat.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chat.h b/chat.h
index 5aef745c..7196aea8 100644
--- a/chat.h
+++ b/chat.h
@@ -23,6 +23,9 @@
Suite 330, Boston, MA 02111-1307 USA
*/
+#ifndef _CHAT_H
+#define _CHAT_H
+
struct chat
{
account_t *acc;
@@ -44,3 +47,5 @@ int chat_chancmp( char *a, char *b );
int chat_chanok( char *a );
int chat_join( irc_t *irc, struct chat *c, const char *password );
+
+#endif