Include "snprintf.h", as we use "snprintf()", so that we don't get

warnings from "gcc -Wall".

svn path=/trunk/; revision=152
This commit is contained in:
Guy Harris 1999-01-04 08:45:22 +00:00
parent b6f5b5db78
commit 52e0d7c7ea
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
* $Id: packet-tcp.c,v 1.12 1998/12/29 04:05:35 gerald Exp $
* $Id: packet-tcp.c,v 1.13 1999/01/04 08:45:22 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -31,6 +31,15 @@
#include <stdio.h>
#ifdef NEED_SNPRINTF_H
# ifdef HAVE_STDARG_H
# include <stdarg.h>
# else
# include <varargs.h>
# endif
# include "snprintf.h"
#endif
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif