diff options
author | Max Semenik <maxsem.wiki@gmail.com> | 2020-07-01 16:32:55 +0300 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-07-06 21:13:34 +0200 |
commit | 2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c (patch) | |
tree | f23a5c00a96f30a62ddcf626b4c6a6d53809d14f /ext/standard/dl.c | |
parent | 47579986504022d3eab38e24fff5861d5e4eadad (diff) | |
download | php-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz |
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r-- | ext/standard/dl.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c index f70ab6fbb5..233103f83d 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -38,8 +38,7 @@ #endif #endif /* defined(HAVE_LIBDL) */ -/* {{{ proto bool dl(string extension_filename) - Load a PHP extension at runtime */ +/* {{{ Load a PHP extension at runtime */ PHPAPI PHP_FUNCTION(dl) { char *filename; @@ -68,8 +67,7 @@ PHPAPI PHP_FUNCTION(dl) #if defined(HAVE_LIBDL) -/* {{{ php_load_shlib - */ +/* {{{ php_load_shlib */ PHPAPI void *php_load_shlib(const char *path, char **errp) { void *handle; @@ -96,8 +94,7 @@ PHPAPI void *php_load_shlib(const char *path, char **errp) } /* }}} */ -/* {{{ php_load_extension - */ +/* {{{ php_load_extension */ PHPAPI int php_load_extension(const char *filename, int type, int start_now) { void *handle; @@ -265,8 +262,7 @@ PHPAPI int php_load_extension(const char *filename, int type, int start_now) #endif -/* {{{ php_dl - */ +/* {{{ php_dl */ PHPAPI void php_dl(const char *file, int type, zval *return_value, int start_now) { /* Load extension */ |