Skip to content

Commit dd01303

Browse files
committed
Run have_func with the header providing the declarations
1 parent 65c9266 commit dd01303

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/io/console/extconf.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
abort
1111

1212
have_func("rb_interned_str_cstr")
13-
have_func("rb_io_path")
14-
have_func("rb_io_descriptor")
15-
have_func("rb_io_get_write_io")
16-
have_func("rb_io_closed_p")
17-
have_func("rb_io_open_descriptor")
13+
have_func("rb_io_path", "ruby/io.h")
14+
have_func("rb_io_descriptor", "ruby/io.h")
15+
have_func("rb_io_get_write_io", "ruby/io.h")
16+
have_func("rb_io_closed_p", "ruby/io.h")
17+
have_func("rb_io_open_descriptor", "ruby/io.h")
1818
have_func("rb_ractor_local_storage_value_newkey")
1919

2020
is_wasi = /wasi/ =~ MakeMakefile::RbConfig::CONFIG["platform"]

0 commit comments

Comments
 (0)