From: guy Date: Mon, 4 Jan 1999 07:39:14 +0000 (+0000) Subject: Include "snprintf.h", as we use "snprintf()", so that we don't get X-Git-Url: http://git.samba.org/samba.git/?p=obnox%2Fwireshark%2Fwip.git;a=commitdiff_plain;h=1c033b9b597362aa97bb3d23fd44c597d0e7338f Include "snprintf.h", as we use "snprintf()", so that we don't get warnings from "gcc -Wall". git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@151 f5534014-38df-0310-8fa8-9805f1628bb7 --- diff --git a/ethereal.c b/ethereal.c index 89f5ae059c..7ac74c9ed7 100644 --- a/ethereal.c +++ b/ethereal.c @@ -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 @@ -55,6 +55,15 @@ #include #include +#ifdef NEED_SNPRINTF_H +# ifdef HAVE_STDARG_H +# include +# else +# include +# endif +# include "snprintf.h" +#endif + #include "ethereal.h" #include "capture.h" #include "packet.h"