summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-10-13 09:50:32 +0200
committerAnatol Belski <ab@php.net>2016-10-13 09:50:32 +0200
commit3104882cf873308c43dca20bdfd698dd3470a246 (patch)
treeeac9e5edc05232830f3f8a59d17d738a7a9e779a
parentcd8c9b06149dc7dc0415524f1d74880fd6f2d25c (diff)
downloadphp-git-3104882cf873308c43dca20bdfd698dd3470a246.tar.gz
Revert "export symbol missing by phpdbg"
This reverts commit 611ab7fe5b9fe41de56c25b1d348a866794b1fb1. Overseen strpprintf is there
-rw-r--r--Zend/zend_exceptions.c12
-rw-r--r--Zend/zend_string.c12
-rw-r--r--Zend/zend_string.h2
3 files changed, 12 insertions, 14 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index 388c982115..89c94eb56f 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -696,6 +696,18 @@ size_t zend_spprintf(char **message, size_t max_len, const char *format, ...) /*
}
/* }}} */
+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;
+}
+/* }}} */
+
/* {{{ proto string Exception|Error::__toString()
Obtain the string representation of the Exception object */
ZEND_METHOD(exception, __toString)
diff --git a/Zend/zend_string.c b/Zend/zend_string.c
index 39912dae30..03d77e1293 100644
--- a/Zend/zend_string.c
+++ b/Zend/zend_string.c
@@ -198,18 +198,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
diff --git a/Zend/zend_string.h b/Zend/zend_string.h
index a1c1bebaea..722fc3ae46 100644
--- a/Zend/zend_string.h
+++ b/Zend/zend_string.h
@@ -33,8 +33,6 @@ ZEND_API zend_ulong zend_hash_func(const char *str, size_t len);
void zend_interned_strings_init(void);
void zend_interned_strings_dtor(void);
-ZEND_API zend_string *zend_strpprintf(size_t max_len, const char *format, ...);
-
END_EXTERN_C()
/* Shortcuts */