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

warnings from "gcc -Wall".

svn path=/trunk/; revision=151
This commit is contained in:
Guy Harris 1999-01-04 07:39:14 +00:00
parent b0fe085dc3
commit b6f5b5db78
1 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,6 @@
/* ethereal.c
*
* $Id: ethereal.c,v 1.19 1998/12/29 04:05:34 gerald Exp $
* $Id: ethereal.c,v 1.20 1999/01/04 07:39:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -55,6 +55,15 @@
#include <fcntl.h>
#include <netinet/in.h>
#ifdef NEED_SNPRINTF_H
# ifdef HAVE_STDARG_H
# include <stdarg.h>
# else
# include <varargs.h>
# endif
# include "snprintf.h"
#endif
#include "ethereal.h"
#include "capture.h"
#include "packet.h"