diff options
author | Anatol Belski <ab@php.net> | 2016-10-13 09:50:32 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-10-14 02:01:08 +0200 |
commit | ee425297506cb7248085b2bfcddf264af3953d6f (patch) | |
tree | cd38a94ce841729b0b8ee6d34102e3756dda038c /Zend/zend_string.c | |
parent | 177e6adca7349bf97c3c543fd0aea577583129cb (diff) | |
download | php-git-ee425297506cb7248085b2bfcddf264af3953d6f.tar.gz |
Revert "export symbol missing by phpdbg"
This reverts commit 611ab7fe5b9fe41de56c25b1d348a866794b1fb1.
Overseen strpprintf is there
(cherry picked from commit 3104882cf873308c43dca20bdfd698dd3470a246)
Diffstat (limited to 'Zend/zend_string.c')
-rw-r--r-- | Zend/zend_string.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Zend/zend_string.c b/Zend/zend_string.c index 194170db0b..612c8049ef 100644 --- a/Zend/zend_string.c +++ b/Zend/zend_string.c @@ -243,18 +243,6 @@ static void zend_interned_strings_restore_int(void) #endif } -ZEND_API zend_string *zend_strpprintf(size_t max_len, const char *format, ...) /* {{{ */ -{ - va_list arg; - zend_string *str; - - va_start(arg, format); - str = zend_vstrpprintf(max_len, format, arg); - va_end(arg); - return str; -} -/* }}} */ - /* * Local variables: * tab-width: 4 |