From: Wez Furlong Date: Thu, 20 May 2004 17:59:27 +0000 (+0000) Subject: Revert; obviously I missed the function at the bottom of the file... X-Git-Tag: RELEASE_0_1~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3ec72d3ed96ceec850e4c446764281b2c39d257e;p=php Revert; obviously I missed the function at the bottom of the file... --- diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 5baa061002..ff0f313700 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); -ZEND_API void zend_throw_exception_internal(zval *exception TSRMLS_DC) +void zend_throw_exception_internal(zval *exception TSRMLS_DC) { if (exception != NULL) { if (EG(exception)) { diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index 65705fb068..e704d61e5e 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -26,7 +26,7 @@ BEGIN_EXTERN_C() -ZEND_API void zend_throw_exception_internal(zval *exception TSRMLS_DC); +void zend_throw_exception_internal(zval *exception TSRMLS_DC); void zend_register_default_exception(TSRMLS_D);