aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-03-30 19:37:31 +0000
committerGuy Harris <guy@alum.mit.edu>2004-03-30 19:37:31 +0000
commit5eb39c4638ddbc758ed341671236cf9202fb1855 (patch)
tree3d3fa18ea8bd23fbfed31f163e0a42d90d0530c1 /wiretap
parentaf3a427ffdb445919d64fb1a339459de266afdc8 (diff)
From Albert Chin: "config.h" should come before all other #includes.
svn path=/trunk/; revision=10528
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/wtap.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/wiretap/wtap.c b/wiretap/wtap.c
index 0496ca4da6..3fd92285a1 100644
--- a/wiretap/wtap.c
+++ b/wiretap/wtap.c
@@ -1,6 +1,6 @@
/* wtap.c
*
- * $Id: wtap.c,v 1.92 2004/03/23 01:02:41 guy Exp $
+ * $Id: wtap.c,v 1.93 2004/03/30 19:37:31 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -20,12 +20,13 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include <string.h>
-#include <errno.h>
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
+
+#include <string.h>
+#include <errno.h>
+
#include "wtap-int.h"
#include "file_wrappers.h"
#include "buffer.h"