]> code.citadel.org Git - citadel.git/blobdiff - citadel/client_chat.c
Fixes for Cygwin (see ChangeLog)
[citadel.git] / citadel / client_chat.c
index 69996df9c18a1a37e0fdf3406a7646b2f97fb571..e76f25766476954ade6e6a76cfc5dbfaaafbae84 100644 (file)
@@ -22,6 +22,7 @@
 #ifdef HAVE_SYS_SELECT_H
 #include <sys/select.h>
 #endif
+#include <stdarg.h>
 #include "citadel.h"
 #include "client_chat.h"
 #include "commands.h"
@@ -29,6 +30,9 @@
 #include "ipc.h"
 #include "citadel_decls.h"
 #include "tools.h"
+#ifndef HAVE_SNPRINTF
+#include "snprintf.h"
+#endif
 
 #define MIN(a, b) ((a) < (b) ? (a) : (b))