summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-08-27 17:46:20 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-08-27 17:46:20 +0000
commitbe9ce3ad266cf5bb9ad1d0c65aeac70fb656e1ab (patch)
tree728c69f70e79fe1ed3ff91c10ceae049ac333d49 /src
parente88c4269660e3dd537e61f6de62f807525ab390d (diff)
downloadtinyproxy-be9ce3ad266cf5bb9ad1d0c65aeac70fb656e1ab.tar.gz
tinyproxy-be9ce3ad266cf5bb9ad1d0c65aeac70fb656e1ab.zip
Moved some of the includes around so that FreeBSD can compile correctly.
Diffstat (limited to 'src')
-rw-r--r--src/tinyproxy.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h
index 0b4460b..bebcb78 100644
--- a/src/tinyproxy.h
+++ b/src/tinyproxy.h
@@ -1,4 +1,4 @@
-/* $Id: tinyproxy.h,v 1.11 2001-08-26 21:18:04 rjkaes Exp $
+/* $Id: tinyproxy.h,v 1.12 2001-08-27 17:46:20 rjkaes Exp $
*
* See 'tinyproxy.c' for a detailed description.
*
@@ -26,6 +26,7 @@
/*
* Include standard headers which are used through-out tinyproxy
*/
+#include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
@@ -41,10 +42,9 @@
# include <time.h>
# endif
#endif
-#include <sys/types.h>
#include <sys/uio.h>
-#include <arpa/inet.h>
#include <netinet/in.h>
+#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>