From: Etienne Kneuss Date: Sun, 20 Jul 2008 16:32:55 +0000 (+0000) Subject: MFH: Fix build for solaris X-Git-Tag: php-5.3.0alpha1~261 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d0d02f95b90324e398c1662052b9c7ecbc4a8c8;p=php MFH: Fix build for solaris --- diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c index 51d269764b..e4a6e3094e 100755 --- a/ext/spl/spl_array.c +++ b/ext/spl/spl_array.c @@ -1176,7 +1176,7 @@ SPL_METHOD(Array, seek) zend_throw_exception_ex(spl_ce_OutOfBoundsException, 0 TSRMLS_CC, "Seek position %ld is out of range", opos); } /* }}} */ -int inline spl_array_object_count_elements_helper(spl_array_object *intern, long *count TSRMLS_DC) /* {{{ */ +int static spl_array_object_count_elements_helper(spl_array_object *intern, long *count TSRMLS_DC) /* {{{ */ { HashTable *aht = spl_array_get_hash_table(intern, 0 TSRMLS_CC); HashPosition pos;