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/syslog.c | |
parent | 47579986504022d3eab38e24fff5861d5e4eadad (diff) | |
download | php-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz |
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r-- | ext/standard/syslog.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index b07f6d6a51..5926abf34e 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -32,8 +32,7 @@ #include "basic_functions.h" #include "php_ext_syslog.h" -/* {{{ PHP_MINIT_FUNCTION - */ +/* {{{ PHP_MINIT_FUNCTION */ PHP_MINIT_FUNCTION(syslog) { /* error levels */ @@ -127,8 +126,7 @@ void php_openlog(const char *ident, int option, int facility) PG(have_called_openlog) = 1; } -/* {{{ proto bool openlog(string ident, int option, int facility) - Open connection to system logger */ +/* {{{ Open connection to system logger */ /* ** OpenLog("nettopp", $LOG_PID, $LOG_LOCAL1); ** Syslog($LOG_EMERG, "help me!") @@ -158,8 +156,7 @@ PHP_FUNCTION(openlog) } /* }}} */ -/* {{{ proto bool closelog(void) - Close connection to system logger */ +/* {{{ Close connection to system logger */ PHP_FUNCTION(closelog) { ZEND_PARSE_PARAMETERS_NONE(); @@ -173,8 +170,7 @@ PHP_FUNCTION(closelog) } /* }}} */ -/* {{{ proto bool syslog(int priority, string message) - Generate a system log message */ +/* {{{ Generate a system log message */ PHP_FUNCTION(syslog) { zend_long priority; |