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_sprintf.c | |
parent | 79a3618b36418494fe3b37e90a538d51d0a3302b (diff) | |
download | php-git-411478e1f6f930743b4d75dbcd1563f346b22a1d.tar.gz |
Fixed bug #20256 (snprintf() not defined)
Diffstat (limited to 'main/php_sprintf.c')
-rw-r--r-- | main/php_sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_sprintf.c b/main/php_sprintf.c index cb226b28db..e3fdb00531 100644 --- a/main/php_sprintf.c +++ b/main/php_sprintf.c @@ -43,7 +43,7 @@ php_sprintf (char*s, const char* format, ...) return strlen (s); } -#endif /* BROKEN_SPRINTF */ +#endif /* PHP_BROKEN_SPRINTF */ /* * Local variables: |