summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2008-03-20 17:19:07 -0700
committerEric Anholt <eric@anholt.net>2008-03-21 14:19:30 -0700
commitbcb61987fb7260894065e4fc5aa246317e1a3ff4 (patch)
tree37cf02c76a76e1c3bb5ed5565a7fddd68f73b971 /progs
parent5ad06156b2ed3b157445d3569888bb5f5091791e (diff)
Fix xdemos build on FreeBSD: <sys/types.h> before <netinet/tcp.h>
Diffstat (limited to 'progs')
-rw-r--r--progs/xdemos/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/xdemos/ipc.c b/progs/xdemos/ipc.c
index fa52b09076..c872d1641a 100644
--- a/progs/xdemos/ipc.c
+++ b/progs/xdemos/ipc.c
@@ -27,12 +27,12 @@
#include <assert.h>
#include <stdio.h>
#include <string.h>
+#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <unistd.h>
-#include <sys/types.h>
#include <sys/socket.h>
#include "ipc.h"