diff options
author | Andi Gutmans <andi@php.net> | 2000-07-02 15:39:54 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-07-02 15:39:54 +0000 |
commit | b72a2738dc5e8a93abee775d780db46f3faefe05 (patch) | |
tree | 0c940e241ab2a069b09076502ba4415889e65162 /Zend | |
parent | b9037f7d691bf1a88d6aaf708d3babb28836c468 (diff) | |
download | php-git-b72a2738dc5e8a93abee775d780db46f3faefe05.tar.gz |
- Forgot ZEND_API
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_execute.h | 2 | ||||
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index 553c694ba5..be1dc5350b 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -157,7 +157,7 @@ ZEND_API zend_bool zend_is_executing(void); void zend_set_timeout(long seconds); void zend_unset_timeout(void); -void zend_timeout(int dummy); +ZEND_API void zend_timeout(int dummy); #ifdef ZEND_WIN32 void zend_init_timeout_thread(); diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index f1617448d5..4fdc86e66e 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -554,7 +554,7 @@ void execute_new_code(CLS_D) #endif -void zend_timeout(int dummy) +ZEND_API void zend_timeout(int dummy) { ELS_FETCH(); |