fix build, part of previous change
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1188 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
This commit is contained in:
parent
278cdbcb50
commit
00883bf301
|
@ -184,9 +184,9 @@ typedef struct xc_entry_hash_t { /* {{{ */
|
|||
} xc_entry_hash_t;
|
||||
/* }}} */
|
||||
|
||||
int xc_is_rw(const void *p);
|
||||
int xc_is_ro(const void *p);
|
||||
int xc_is_shm(const void *p);
|
||||
zend_bool xc_is_rw(const void *p);
|
||||
zend_bool xc_is_ro(const void *p);
|
||||
zend_bool xc_is_shm(const void *p);
|
||||
/* {{{ xc_gc_op_array_t */
|
||||
typedef struct {
|
||||
#ifdef ZEND_ENGINE_2
|
||||
|
|
|
@ -2253,7 +2253,7 @@ zend_bool xc_is_ro(const void *p) /* {{{ */
|
|||
return 0;
|
||||
}
|
||||
/* }}} */
|
||||
int xc_is_shm(const void *p) /* {{{ */
|
||||
zned_bool xc_is_shm(const void *p) /* {{{ */
|
||||
{
|
||||
return xc_is_ro(p) || xc_is_rw(p);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue