Fixed bug #20256 (snprintf() not defined)

This commit is contained in:
foobar 2003-02-25 09:44:12 +00:00
parent 79a3618b36
commit 411478e1f6
4 changed files with 5 additions and 5 deletions

View file

@ -218,7 +218,7 @@ char *strerror(int);
#define LONG_MIN (- LONG_MAX - 1)
#endif
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || defined(BROKEN_SPRINTF) || defined(BROKEN_SNPRINTF) || defined(BROKEN_VSNPRINTF)
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) || PHP_BROKEN_SPRINTF || PHP_BROKEN_SNPRINTF || PHP_BROKEN_VSNPRINTF
#include "snprintf.h"
#endif
#include "spprintf.h"