aboutsummaryrefslogtreecommitdiffstats
path: root/capture-pcap-util.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2007-11-30 22:01:05 +0000
committerUlf Lamping <ulf.lamping@web.de>2007-11-30 22:01:05 +0000
commit99d60cce590b7aa2644cbbd86c672c1f000351b0 (patch)
treea831f5f339d548b22bce1590f9239ea7cbfba727 /capture-pcap-util.c
parentfb12fd593fed2044f72c2cd868aa94b89d9c9343 (diff)
first steps to support MSVC 2008 Express Edition
svn path=/trunk/; revision=23691
Diffstat (limited to 'capture-pcap-util.c')
-rw-r--r--capture-pcap-util.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/capture-pcap-util.c b/capture-pcap-util.c
index a9c60ea5ad..1c24afd485 100644
--- a/capture-pcap-util.c
+++ b/capture-pcap-util.c
@@ -28,14 +28,15 @@
#ifdef HAVE_LIBPCAP
-#include <pcap.h>
-
#include <glib.h>
#include <stdlib.h>
+#include <stdio.h>
#include <limits.h>
#include <string.h>
+#include <pcap.h>
+
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif