summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2008-02-12 01:17:48 +0000
committerStanislav Malyshev <stas@php.net>2008-02-12 01:17:48 +0000
commitbbc813d360062a9bc62b7b936d9da3ce4cf32066 (patch)
tree2bd4528ce0cd3e27c6a113dce83730d8cd509f87
parentad7e2f8712420ca666f1e6590f83f1c84b21b871 (diff)
downloadphp-git-bbc813d360062a9bc62b7b936d9da3ce4cf32066.tar.gz
fix folding
-rw-r--r--Zend/zend_compile.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c
index e739f18684..d69b23987b 100644
--- a/Zend/zend_compile.c
+++ b/Zend/zend_compile.c
@@ -4945,6 +4945,8 @@ void zend_do_end_compilation(TSRMLS_D) /* {{{ */
}
/* }}} */
+/* {{{ zend_dirname
+ Returns directory name component of path */
ZEND_API size_t zend_dirname(char *path, size_t len)
{
register char *end = path + len - 1;
@@ -5036,6 +5038,7 @@ ZEND_API size_t zend_dirname(char *path, size_t len)
return (size_t)(end + 1 - path) + len_adjust;
}
/* }}} */
+
/*
* Local variables:
* tab-width: 4