diff options
author | foobar <sniper@php.net> | 2003-02-25 09:44:12 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-02-25 09:44:12 +0000 |
commit | 411478e1f6f930743b4d75dbcd1563f346b22a1d (patch) | |
tree | 87577f272e1a289aabe43a187b34a20b175d2076 /main/php.h | |
parent | 79a3618b36418494fe3b37e90a538d51d0a3302b (diff) | |
download | php-git-411478e1f6f930743b4d75dbcd1563f346b22a1d.tar.gz |
Fixed bug #20256 (snprintf() not defined)
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
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" |