summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-10-01 19:01:15 -0400
committerirungentoo <irungentoo@gmail.com>2013-10-01 19:01:15 -0400
commitefa3c79699c4d0af21b7fcdc30b6117adfdc1e9d (patch)
tree3ad7fc22759a34db1dbbb9274251f516792aeda9
parentb9bffced7c75dc059ede6187cbefb773a2061e8f (diff)
Removed useless ifdefs.
-rw-r--r--toxcore/group_chats.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/toxcore/group_chats.h b/toxcore/group_chats.h
index e45f2af2..33f0b1e6 100644
--- a/toxcore/group_chats.h
+++ b/toxcore/group_chats.h
@@ -27,10 +27,6 @@
27 27
28#include "net_crypto.h" 28#include "net_crypto.h"
29 29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#define MAX_NICK_BYTES 128 30#define MAX_NICK_BYTES 128
35 31
36typedef struct { 32typedef struct {
@@ -130,8 +126,6 @@ int handle_groupchatpacket(Group_Chat *chat, IP_Port source, uint8_t *packet, ui
130 126
131void chat_bootstrap(Group_Chat *chat, IP_Port ip_port, uint8_t *client_id); 127void chat_bootstrap(Group_Chat *chat, IP_Port ip_port, uint8_t *client_id);
132void chat_bootstrap_nonlazy(Group_Chat *chat, IP_Port ip_port, uint8_t *client_id); 128void chat_bootstrap_nonlazy(Group_Chat *chat, IP_Port ip_port, uint8_t *client_id);
133#ifdef __cplusplus 129
134}
135#endif
136 130
137#endif 131#endif