]> granicus.if.org Git - php/commitdiff
BROKEN_SPRINTF should be PHP_BROKEN_SPRINTF
authorJoey Smith <joey@php.net>
Sun, 23 Jul 2000 08:25:27 +0000 (08:25 +0000)
committerJoey Smith <joey@php.net>
Sun, 23 Jul 2000 08:25:27 +0000 (08:25 +0000)
main/php_sprintf.c
main/snprintf.h

index 4509f33da2bc217a3cb1f2cb5076830d607acb83..ebe66412a3a91912474db0fdcf7e7538fa15500e 100644 (file)
@@ -22,7 +22,7 @@
 #include <stdarg.h>
 #include "php_config.h"
 
-#if BROKEN_SPRINTF
+#if PHP_BROKEN_SPRINTF
 
 int
 php_sprintf (char*s, const char* format, ...)
index aa48093061b54241830db23c651d183e644a4820..c025862182a99700f7514a6cdada0c4c0fb4c184 100644 (file)
@@ -29,7 +29,7 @@ extern int ap_php_vsnprintf(char *, size_t, const char *, va_list ap);
 #define vsnprintf ap_php_vsnprintf
 #endif
 
-#if BROKEN_SPRINTF
+#if PHP_BROKEN_SPRINTF
 int php_sprintf (char* s, const char* format, ...);
 #define sprintf php_sprintf
 #endif