diff options
author | Joey Smith <joey@php.net> | 2000-07-23 08:25:27 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2000-07-23 08:25:27 +0000 |
commit | 4caea0bb7a6614ce1837ae76c931a5c783541923 (patch) | |
tree | 913f35892f121dd9f55aba4befc91d3e82160d5a /main | |
parent | 8aadb68db15f7081ded8a830c353fdd4cdc327a4 (diff) | |
download | php-git-4caea0bb7a6614ce1837ae76c931a5c783541923.tar.gz |
BROKEN_SPRINTF should be PHP_BROKEN_SPRINTF
Diffstat (limited to 'main')
-rw-r--r-- | main/php_sprintf.c | 2 | ||||
-rw-r--r-- | main/snprintf.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/php_sprintf.c b/main/php_sprintf.c index 4509f33da2..ebe66412a3 100644 --- a/main/php_sprintf.c +++ b/main/php_sprintf.c @@ -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, ...) diff --git a/main/snprintf.h b/main/snprintf.h index aa48093061..c025862182 100644 --- a/main/snprintf.h +++ b/main/snprintf.h @@ -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 |