summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-02-25 09:44:12 +0000
committerfoobar <sniper@php.net>2003-02-25 09:44:12 +0000
commit411478e1f6f930743b4d75dbcd1563f346b22a1d (patch)
tree87577f272e1a289aabe43a187b34a20b175d2076 /main/php.h
parent79a3618b36418494fe3b37e90a538d51d0a3302b (diff)
downloadphp-git-411478e1f6f930743b4d75dbcd1563f346b22a1d.tar.gz
Fixed bug #20256 (snprintf() not defined)
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h2
1 files changed, 1 insertions, 1 deletions
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"