summaryrefslogtreecommitdiff
path: root/ext/ffi
diff options
context:
space:
mode:
authorMax Semenik <maxsem.wiki@gmail.com>2020-07-01 16:32:55 +0300
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-07-06 21:13:34 +0200
commit2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c (patch)
treef23a5c00a96f30a62ddcf626b4c6a6d53809d14f /ext/ffi
parent47579986504022d3eab38e24fff5861d5e4eadad (diff)
downloadphp-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/ffi')
-rw-r--r--ext/ffi/ffi.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/ext/ffi/ffi.c b/ext/ffi/ffi.c
index c06597283b..60e4679f29 100644
--- a/ext/ffi/ffi.c
+++ b/ext/ffi/ffi.c
@@ -4861,8 +4861,7 @@ static int zend_ffi_preload(char *preload) /* {{{ */
}
/* }}} */
-/* {{{ ZEND_MINIT_FUNCTION
- */
+/* {{{ ZEND_MINIT_FUNCTION */
ZEND_MINIT_FUNCTION(ffi)
{
zend_class_entry ce;
@@ -5033,8 +5032,7 @@ ZEND_MINIT_FUNCTION(ffi)
}
/* }}} */
-/* {{{ ZEND_RSHUTDOWN_FUNCTION
- */
+/* {{{ ZEND_RSHUTDOWN_FUNCTION */
ZEND_RSHUTDOWN_FUNCTION(ffi)
{
if (FFI_G(callbacks)) {
@@ -5054,8 +5052,7 @@ ZEND_RSHUTDOWN_FUNCTION(ffi)
}
/* }}} */
-/* {{{ ZEND_MINFO_FUNCTION
- */
+/* {{{ ZEND_MINFO_FUNCTION */
ZEND_MINFO_FUNCTION(ffi)
{
php_info_print_table_start();
@@ -5130,8 +5127,7 @@ const struct {
{"__gnuc_va_list", &zend_ffi_type_ptr},
};
-/* {{{ ZEND_GINIT_FUNCTION
- */
+/* {{{ ZEND_GINIT_FUNCTION */
static ZEND_GINIT_FUNCTION(ffi)
{
size_t i;
@@ -5147,8 +5143,7 @@ static ZEND_GINIT_FUNCTION(ffi)
}
/* }}} */
-/* {{{ ZEND_GINIT_FUNCTION
- */
+/* {{{ ZEND_GINIT_FUNCTION */
static ZEND_GSHUTDOWN_FUNCTION(ffi)
{
if (ffi_globals->scopes) {
@@ -5159,8 +5154,7 @@ static ZEND_GSHUTDOWN_FUNCTION(ffi)
}
/* }}} */
-/* {{{ ffi_module_entry
- */
+/* {{{ ffi_module_entry */
zend_module_entry ffi_module_entry = {
STANDARD_MODULE_HEADER,
"FFI", /* Extension name */