diff src/protocols/jabber/jabber.h @ 3630:9682c0e022c6

[gaim-migrate @ 3753] Yeah this will probably break a lot of shit knowing my luck. But hey, I really don't care what people thnk. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 11 Oct 2002 03:14:01 +0000
parents 424a40f12a6c
children 1a6d3f3bc682
line wrap: on
line diff
--- a/src/protocols/jabber/jabber.h	Fri Oct 11 02:10:08 2002 +0000
+++ b/src/protocols/jabber/jabber.h	Fri Oct 11 03:14:01 2002 +0000
@@ -16,6 +16,18 @@
  *  Jabber
  *  Copyright (C) 1998-1999 The Jabber Team http://jabber.org/
  */
+#ifndef _WIN32
+#include <syslog.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netdb.h>
+#include <arpa/inet.h>
+#include <strings.h>
+#include <unistd.h>
+#else
+#include <winsock.h>
+#include "win32dep.h"
+#endif
 
 #include <string.h>
 #include <stdlib.h>
@@ -27,13 +39,6 @@
 #include <errno.h>
 #include <signal.h>
 #include <stdarg.h>
-#include <syslog.h>
-#include <strings.h>
-#include <unistd.h>
-#include <sys/socket.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <arpa/inet.h>
 #include <sys/time.h>
 #include <time.h>
 #include <ctype.h>