ruby_sys/
rproc.rs

1use types::{Argc, Value};
2
3extern "C" {
4    pub fn rb_proc_call_with_block(rproc: Value,
5                                   argc: Argc,
6                                   argv: *const Value,
7                                   pass_procval: Value)
8                                   -> Value;
9}