From b33fa18eabf22d79a21aa95e7fa099fad2574142 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Wed, 20 Feb 2019 23:17:15 +0100 Subject: Remove unused PHP_AC_BROKEN_SPRINTF and AC_ZEND_BROKEN_SPRINTF The sprintf function has been normalized to php_sprintf via 61364b5bb172fa512c871b795c2613b1b587e4cd. This patch removes the checks to make a custom sprintf function The ZEND_BROKEN_SPRINTF has been removed and the hardcoded #define zend_sprintf sprintf is used. The php_sprintf and zend_sprintf are now symbols to sprintf. This patch now removes the custom PHP definitions of the php_sprintf and zend_sprintf functions in favor of the C99 sprintf which is also standardized in C89 already. Once, on some systems sprintf didn't behave in same way. --- main/php.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index f182bb8932..161f955303 100644 --- a/main/php.h +++ b/main/php.h @@ -36,8 +36,7 @@ #include "zend_API.h" -#undef sprintf -#define sprintf php_sprintf +#define php_sprintf sprintf /* Operating system family definition */ #ifdef PHP_WIN32 -- cgit v1.2.1