diff options
Diffstat (limited to 'src/rt')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 5 | ||||
| -rw-r--r-- | src/rt/rustrt.def.in | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index c1aa5b59..30e2eb3d 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -468,6 +468,11 @@ rust_file_is_dir(rust_task *task, rust_str *path) { extern "C" CDECL FILE* rust_get_stdin() {return stdin;} extern "C" CDECL FILE* rust_get_stdout() {return stdout;} +extern "C" CDECL int +rust_ptr_eq(rust_task *task, type_desc *t, rust_box *a, rust_box *b) { + return a == b; +} + // // Local Variables: // mode: C++ diff --git a/src/rt/rustrt.def.in b/src/rt/rustrt.def.in index 9ea6bee4..d724dd71 100644 --- a/src/rt/rustrt.def.in +++ b/src/rt/rustrt.def.in @@ -19,6 +19,7 @@ rust_get_stdin rust_get_stdout rust_list_files rust_process_wait +rust_ptr_eq rust_run_program rust_start size_of |