Skip to content

Commit 0e9d9f1

Browse files
committed
Adds zend_startup to blocklist
1 parent bec8a06 commit 0e9d9f1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

phper-sys/build.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ fn main() {
4343
.header("php_wrapper.c")
4444
.allowlist_file("php_wrapper\\.c")
4545
// Block the `zend_ini_parse_quantity` because it's document causes the doc test to fail.
46-
.blocklist_function("zend_ini_parse_quantity", "zend_startup")
46+
.blocklist_function("zend_ini_parse_quantity")
47+
// Block the `zend_startup` because it's document causes the doc test to fail.
48+
.blocklist_function("zend_startup")
4749
.clang_args(&includes)
4850
.derive_default(true);
4951

0 commit comments

Comments
 (0)