summaryrefslogtreecommitdiff
path: root/sapi/embed
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-03-25 11:53:06 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-07-10 14:20:18 +0200
commitf328594072136b243c83ee8d70f81332f84e87da (patch)
tree2cdf7961f83f9d6a2a489d61407d838822ba24fe /sapi/embed
parentdb43a93fc2c5b2f3f2e9eeca70803710afd59850 (diff)
downloadphp-git-f328594072136b243c83ee8d70f81332f84e87da.tar.gz
Add stubs for SAPIs
Closes GH-5295.
Diffstat (limited to 'sapi/embed')
-rw-r--r--sapi/embed/php_embed.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sapi/embed/php_embed.c b/sapi/embed/php_embed.c
index 184445e380..b510d5105e 100644
--- a/sapi/embed/php_embed.c
+++ b/sapi/embed/php_embed.c
@@ -16,6 +16,7 @@
#include "php_embed.h"
#include "ext/standard/php_standard.h"
+#include "ext/standard/dl_arginfo.h"
#ifdef PHP_WIN32
#include <io.h>
@@ -142,12 +143,6 @@ EMBED_SAPI_API sapi_module_struct php_embed_module = {
};
/* }}} */
-/* {{{ arginfo ext/standard/dl.c */
-ZEND_BEGIN_ARG_INFO(arginfo_dl, 0)
- ZEND_ARG_INFO(0, extension_filename)
-ZEND_END_ARG_INFO()
-/* }}} */
-
static const zend_function_entry additional_functions[] = {
ZEND_FE(dl, arginfo_dl)
ZEND_FE_END