diff options
author | Marcus Boerger <helly@php.net> | 2003-08-29 00:16:00 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-08-29 00:16:00 +0000 |
commit | bdd2d4aacf053de59af24784cdcafd74fcb86d8b (patch) | |
tree | 70e813b4711c2d326fcaa83920fcdfbf6c0a175b /Zend/zend_builtin_functions.h | |
parent | b3f3ddd1b56cc839f9c7ef5e96a3a8282851819e (diff) | |
download | php-git-bdd2d4aacf053de59af24784cdcafd74fcb86d8b.tar.gz |
Need to tell zend_fetch_debug_backtrace() whether to skip top function or not.
# And i wondered why the trace wasn't rally accurate.
Diffstat (limited to 'Zend/zend_builtin_functions.h')
-rw-r--r-- | Zend/zend_builtin_functions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index 3367ff3e66..755fad05e9 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -23,7 +23,7 @@ #define ZEND_BUILTIN_FUNCTIONS_H int zend_startup_builtin_functions(TSRMLS_D); -ZEND_API void zend_fetch_debug_backtrace(zval *return_value TSRMLS_DC); +ZEND_API void zend_fetch_debug_backtrace(zval *return_value, int skip_last TSRMLS_DC); #endif /* ZEND_BUILTIN_FUNCTIONS_H */ |