summaryrefslogtreecommitdiff
path: root/ext/standard/syslog.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/syslog.c')
-rw-r--r--ext/standard/syslog.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/ext/standard/syslog.c b/ext/standard/syslog.c
index 3efe2b3710..236c54cf88 100644
--- a/ext/standard/syslog.c
+++ b/ext/standard/syslog.c
@@ -38,6 +38,8 @@
static void start_syslog(BLS_D);
+/* {{{ PHP_MINIT_FUNCTION
+ */
PHP_MINIT_FUNCTION(syslog)
{
/* error levels */
@@ -98,7 +100,7 @@ PHP_MINIT_FUNCTION(syslog)
return SUCCESS;
}
-
+/* }}} */
PHP_RINIT_FUNCTION(syslog)
{
@@ -124,7 +126,8 @@ PHP_RSHUTDOWN_FUNCTION(syslog)
return SUCCESS;
}
-
+/* {{{ start_syslog
+ */
static void start_syslog(BLS_D)
{
ELS_FETCH();
@@ -188,6 +191,7 @@ static void start_syslog(BLS_D)
BG(syslog_started)=1;
}
+/* }}} */
/* {{{ proto void define_syslog_variables(void)
Initializes all syslog-related variables */
@@ -272,5 +276,6 @@ PHP_FUNCTION(syslog)
* tab-width: 4
* c-basic-offset: 4
* End:
- * vim: sw=4 ts=4 tw=78 fdm=marker
+ * vim600: sw=4 ts=4 tw=78 fdm=marker
+ * vim<600: sw=4 ts=4 tw=78
*/