aboutsummaryrefslogtreecommitdiffstats
path: root/yjit/src/cruby_bindings.inc.rs
diff options
context:
space:
mode:
authorMatt Valentine-House <matt@eightbitraptor.com>2023-02-28 10:34:24 +0000
committerAaron Patterson <aaron.patterson@gmail.com>2023-02-28 09:09:00 -0800
commit3766cbce135e14ad9b7ce072e41279c7f1ae4d0f (patch)
tree9c12765ea02c6752d396c4c43c34bd79d1538c11 /yjit/src/cruby_bindings.inc.rs
parent5e4b80177ef7e6abbe90849037b688c004568170 (diff)
downloadruby-3766cbce135e14ad9b7ce072e41279c7f1ae4d0f.tar.gz
Update Rust bindgen
Diffstat (limited to 'yjit/src/cruby_bindings.inc.rs')
-rw-r--r--yjit/src/cruby_bindings.inc.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit/src/cruby_bindings.inc.rs b/yjit/src/cruby_bindings.inc.rs
index 4f873dad50..b366950e7d 100644
--- a/yjit/src/cruby_bindings.inc.rs
+++ b/yjit/src/cruby_bindings.inc.rs
@@ -1074,11 +1074,11 @@ extern "C" {
pub fn rb_get_alloc_func(klass: VALUE) -> rb_alloc_func_t;
pub fn rb_method_basic_definition_p(klass: VALUE, mid: ID) -> ::std::os::raw::c_int;
pub fn rb_bug(fmt: *const ::std::os::raw::c_char, ...) -> !;
- pub fn rb_gc_writebarrier(old: VALUE, young: VALUE);
- pub fn rb_class_get_superclass(klass: VALUE) -> VALUE;
pub fn rb_gc_mark(obj: VALUE);
pub fn rb_gc_mark_movable(obj: VALUE);
pub fn rb_gc_location(obj: VALUE) -> VALUE;
+ pub fn rb_gc_writebarrier(old: VALUE, young: VALUE);
+ pub fn rb_class_get_superclass(klass: VALUE) -> VALUE;
pub static mut rb_mKernel: VALUE;
pub static mut rb_cBasicObject: VALUE;
pub static mut rb_cArray: VALUE;