From Albert Chin: "config.h" should come before all other #includes.

svn path=/trunk/; revision=10528
This commit is contained in:
Guy Harris 2004-03-30 19:37:31 +00:00
parent af3a427ffd
commit 5eb39c4638
2 changed files with 10 additions and 5 deletions

View File

@ -2,7 +2,7 @@
* Routines for SMB mailslot packet dissection
* Copyright 2000, Jeffrey C. Foster <jfoste@woodward.com>
*
* $Id: packet-smb-mailslot.c,v 1.35 2003/11/19 03:53:33 guy Exp $
* $Id: packet-smb-mailslot.c,v 1.36 2004/03/30 19:37:31 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -25,6 +25,10 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include "packet-smb-common.h"
#include "packet-smb-mailslot.h"

View File

@ -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"