summaryrefslogtreecommitdiff
path: root/Zend/zend_exceptions.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-05-20 17:41:09 +0000
committerWez Furlong <wez@php.net>2004-05-20 17:41:09 +0000
commit892ec5f535c89b845bb242446a6f81e4bf46a056 (patch)
treeff7010699deab3f47abef50e95ecf3962caaeeb7 /Zend/zend_exceptions.c
parente3e2370490914272d7b7ca44888526d189b9e85e (diff)
downloadphp-git-892ec5f535c89b845bb242446a6f81e4bf46a056.tar.gz
Export this, so extensions may throw their own exception objects that
they have already instantiated.
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r--Zend/zend_exceptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c
index ff0f313700..5baa061002 100644
--- a/Zend/zend_exceptions.c
+++ b/Zend/zend_exceptions.c
@@ -33,7 +33,7 @@ ZEND_API void zend_throw_exception(zend_class_entry *exception_ce, char *message
ZEND_API void (*zend_throw_exception_hook)(zval *ex TSRMLS_DC);
-void zend_throw_exception_internal(zval *exception TSRMLS_DC)
+ZEND_API void zend_throw_exception_internal(zval *exception TSRMLS_DC)
{
if (exception != NULL) {
if (EG(exception)) {