We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec8a06 commit 0e9d9f1Copy full SHA for 0e9d9f1
phper-sys/build.rs
@@ -43,7 +43,9 @@ fn main() {
43
.header("php_wrapper.c")
44
.allowlist_file("php_wrapper\\.c")
45
// 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")
+ .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")
49
.clang_args(&includes)
50
.derive_default(true);
51
0 commit comments