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/snprintf.h | |
parent | 8aadb68db15f7081ded8a830c353fdd4cdc327a4 (diff) | |
download | php-git-4caea0bb7a6614ce1837ae76c931a5c783541923.tar.gz |
BROKEN_SPRINTF should be PHP_BROKEN_SPRINTF
Diffstat (limited to 'main/snprintf.h')
-rw-r--r-- | main/snprintf.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |