diff options
author | Marcus Boerger <helly@php.net> | 2004-04-28 19:20:28 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-04-28 19:20:28 +0000 |
commit | 63a490cd9002dfc5134255ec4bb8f7a1d0713073 (patch) | |
tree | 6a7803ccc96b8bc4f2cd9a390df407425ee2a3a3 /Zend/zend_exceptions.h | |
parent | 738aa1099f6093f41cd82fdcbf313911486cd5da (diff) | |
download | php-git-63a490cd9002dfc5134255ec4bb8f7a1d0713073.tar.gz |
Fix c++ builds
Diffstat (limited to 'Zend/zend_exceptions.h')
-rw-r--r-- | Zend/zend_exceptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index 059a60479c..e704d61e5e 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -40,7 +40,7 @@ ZEND_API void zend_throw_exception_ex(zend_class_entry *exception_ce, long code ZEND_API void zend_throw_exception_object(zval *exception TSRMLS_DC); ZEND_API void zend_clear_exception(TSRMLS_D); -ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); +extern ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC); /* show an exception using zend_error(E_ERROR,...) */ ZEND_API void zend_exception_error(zval *exception TSRMLS_DC); |