diff options
| author | Markus Fischer <mfischer@php.net> | 2002-03-10 23:45:02 +0000 |
|---|---|---|
| committer | Markus Fischer <mfischer@php.net> | 2002-03-10 23:45:02 +0000 |
| commit | 949e6dbaae0b6e8821b8e011266c57255fc4153f (patch) | |
| tree | 82ad0f6e8073055c6790b510ae503283a8c1a635 /ext/standard/syslog.c | |
| parent | 1bd55792e3b0e9329b288c7f8777e1c7c9b2e414 (diff) | |
| download | php-git-949e6dbaae0b6e8821b8e011266c57255fc4153f.tar.gz | |
- Fix protos.
Diffstat (limited to 'ext/standard/syslog.c')
| -rw-r--r-- | ext/standard/syslog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c index 05e74b0381..c62f65c631 100644 --- a/ext/standard/syslog.c +++ b/ext/standard/syslog.c @@ -203,7 +203,7 @@ PHP_FUNCTION(define_syslog_variables) } /* }}} */ -/* {{{ proto int openlog(string ident, int option, int facility) +/* {{{ proto bool openlog(string ident, int option, int facility) Open connection to system logger */ /* ** OpenLog("nettopp", $LOG_PID, $LOG_LOCAL1); @@ -229,7 +229,7 @@ PHP_FUNCTION(openlog) } /* }}} */ -/* {{{ proto int closelog(void) +/* {{{ proto bool closelog(void) Close connection to system logger */ PHP_FUNCTION(closelog) { @@ -248,7 +248,7 @@ PHP_FUNCTION(closelog) } /* }}} */ -/* {{{ proto int syslog(int priority, string message) +/* {{{ proto bool syslog(int priority, string message) Generate a system log message */ PHP_FUNCTION(syslog) { |
