src/common.c: Include <netinet/in.h> before <arpa/inet.h>.
authorFlorian Forster <octo@huhu.verplant.org>
Thu, 3 Feb 2011 22:42:28 +0000 (23:42 +0100)
committerFlorian Forster <octo@huhu.verplant.org>
Thu, 3 Feb 2011 22:42:28 +0000 (23:42 +0100)
src/common.c

index 142d797..6fdb441 100644 (file)
 # include <math.h>
 #endif
 
-/* for ntohl and htonl */
-#if HAVE_ARPA_INET_H
-# include <arpa/inet.h>
-#endif
-
 /* for getaddrinfo */
 #include <sys/types.h>
 #include <sys/socket.h>
 # include <netinet/in.h>
 #endif
 
+/* for ntohl and htonl */
+#if HAVE_ARPA_INET_H
+# include <arpa/inet.h>
+#endif
+
 #ifdef HAVE_LIBKSTAT
 extern kstat_ctl_t *kc;
 #endif