diff options
| author | Frank M. Kromann <fmk@php.net> | 2006-03-14 18:07:51 +0000 |
|---|---|---|
| committer | Frank M. Kromann <fmk@php.net> | 2006-03-14 18:07:51 +0000 |
| commit | c6b8c26cdf46c3fae9b492c6a487951ae5e0b014 (patch) | |
| tree | 20e1d86cbf23e1241db84bc747208652240f8da5 /ext/spl | |
| parent | 829642a0b733a57b83f25ef99a9fa6893877599d (diff) | |
| download | php-git-c6b8c26cdf46c3fae9b492c6a487951ae5e0b014.tar.gz | |
Fix Win32 compilation.
Diffstat (limited to 'ext/spl')
| -rwxr-xr-x | ext/spl/spl_engine.c | 2 | ||||
| -rwxr-xr-x | ext/spl/spl_engine.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/spl_engine.c b/ext/spl/spl_engine.c index 5e09f2b495..dcc9af3c61 100755 --- a/ext/spl/spl_engine.c +++ b/ext/spl/spl_engine.c @@ -32,7 +32,7 @@ #include "spl_array.h" /* {{{ spl_instantiate */ -void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) +PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) { if (alloc) { ALLOC_ZVAL(*object); diff --git a/ext/spl/spl_engine.h b/ext/spl/spl_engine.h index 36ce184181..ada4195248 100755 --- a/ext/spl/spl_engine.h +++ b/ext/spl/spl_engine.h @@ -36,7 +36,7 @@ static inline zend_class_entry *spl_get_class_entry(zval *obj TSRMLS_DC) } /* }}} */ -void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC); +PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC); /* {{{ spl_instantiate_arg_ex1 */ static inline int spl_instantiate_arg_ex1(zend_class_entry *pce, zval **retval, int alloc, zval *arg1 TSRMLS_DC) |
