Include "snprintf.h" on platforms that don't have an "snprintf()" of

their own.

svn path=/trunk/; revision=1348
This commit is contained in:
Guy Harris 1999-12-15 22:52:04 +00:00
parent e588b8057b
commit 0305e68aef
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* packet-isis-clv.c
* Common CLV decode routines.
*
* $Id: packet-isis-clv.c,v 1.1 1999/12/15 04:34:17 guy Exp $
* $Id: packet-isis-clv.c,v 1.2 1999/12/15 22:52:04 guy Exp $
* Stuart Stanley <stuarts@mxmail.net>
*
* Ethereal - Network traffic analyzer
@ -34,6 +34,15 @@
# include <sys/types.h>
#endif
#ifdef NEED_SNPRINTF_H
# ifdef HAVE_STDARG_H
# include <stdarg.h>
# else
# include <varargs.h>
# endif
# include "snprintf.h"
#endif
#include <stdio.h>
#include <string.h>
#include <glib.h>