From 411478e1f6f930743b4d75dbcd1563f346b22a1d Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 25 Feb 2003 09:44:12 +0000 Subject: Fixed bug #20256 (snprintf() not defined) --- main/php.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index 6cd191453a..f02dade94a 100644 --- a/main/php.h +++ b/main/php.h @@ -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" -- cgit v1.2.1