]> granicus.if.org Git - php/commitdiff
configure sets ZEND_BROKEN_SPRINTF
authorSascha Schumann <sas@php.net>
Sun, 19 Dec 1999 01:47:43 +0000 (01:47 +0000)
committerSascha Schumann <sas@php.net>
Sun, 19 Dec 1999 01:47:43 +0000 (01:47 +0000)
Zend/acconfig.h
Zend/zend_sprintf.c

index ae8de50c84d8883cad3f4d877a8aa242f6089821..2599994b7bec32ec387c8c899e0afae5d5bd9e9f 100644 (file)
@@ -34,7 +34,7 @@
 #define MEMORY_LIMIT 0
 
 /* Define if you have broken sprintf function like SunOS 4 */
-#define BROKEN_SPRINTF 0
+#define ZEND_BROKEN_SPRINTF 0
 
 /* Define to compile Zend thread safe */
 #undef ZTS
index 878ba32d2891b99e3ee3452dc82257f38e1f3e82..57fd0ecfbe808479006f3ab93a947e04148ce519 100644 (file)
@@ -26,7 +26,7 @@
 # include <stdarg.h>
 #endif
 
-#if BROKEN_SPRINTF
+#if ZEND_BROKEN_SPRINTF
 int zend_sprintf(char *buffer, const char *format, ...)
 {
        va_list args;