summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-07-14 08:38:20 +0000
committerAntony Dovgal <tony2001@php.net>2007-07-14 08:38:20 +0000
commitb608bd654dd9df5059dc031e7f1b01d1f14e65a5 (patch)
treed817be4dffce1ef4917c4230cf14acaae90f56a5 /ext/standard/syslog.c
parentfd4bf13ac36ecef6803d6db0aaf4c3eafa007ce7 (diff)
downloadphp-git-b608bd654dd9df5059dc031e7f1b01d1f14e65a5.tar.gz
fix ws, cs & folding
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r--ext/standard/syslog.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c
index b60067ae7e..8cd7c98944 100644
--- a/ext/standard/syslog.c
+++ b/ext/standard/syslog.c
@@ -103,7 +103,7 @@ PHP_MINIT_FUNCTION(syslog)
}
/* }}} */
-PHP_RINIT_FUNCTION(syslog)
+PHP_RINIT_FUNCTION(syslog) /* {{{ */
{
if (INI_INT("define_syslog_variables")) {
start_syslog(TSRMLS_C);
@@ -112,23 +112,25 @@ PHP_RINIT_FUNCTION(syslog)
}
return SUCCESS;
}
-
+/* }}} */
#ifdef PHP_WIN32
-PHP_RSHUTDOWN_FUNCTION(syslog)
+PHP_RSHUTDOWN_FUNCTION(syslog) /* {{{ */
{
closelog();
return SUCCESS;
}
+/* }}} */
#endif
-PHP_MSHUTDOWN_FUNCTION(syslog)
+PHP_MSHUTDOWN_FUNCTION(syslog) /* {{{ */
{
if (BG(syslog_device)) {
free(BG(syslog_device));
}
return SUCCESS;
}
+/* }}} */
/* {{{ start_syslog
*/