From 2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c Mon Sep 17 00:00:00 2001 From: Max Semenik Date: Wed, 1 Jul 2020 16:32:55 +0300 Subject: Remove proto comments from C files Closes GH-5758 --- ext/standard/dl.c | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'ext/standard/dl.c') 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 */ -- cgit v1.2.1