diff options
| author | joboet <jonasboettiger@icloud.com> | 2024-06-16 13:14:01 +0200 |
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2024-06-16 13:14:01 +0200 |
| commit | cf9510cd3382fb1a5b4902a1b0e68af3e3274931 (patch) | |
| tree | 01e978ba2f27f8c2d8908267d200b45969f8470d /library/std/src/rt.rs | |
| parent | 12b33d36f3de0fb30ca08c49f5b2f4fa111861a4 (diff) | |
| download | rust-cf9510cd3382fb1a5b4902a1b0e68af3e3274931.tar.gz rust-cf9510cd3382fb1a5b4902a1b0e68af3e3274931.zip | |
std: move `sys_common::backtrace` to `sys`
Diffstat (limited to 'library/std/src/rt.rs')
| -rw-r--r-- | library/std/src/rt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/rt.rs b/library/std/src/rt.rs index 46f691d7b75..b03fa1c01f2 100644 --- a/library/std/src/rt.rs +++ b/library/std/src/rt.rs @@ -156,7 +156,7 @@ fn lang_start<T: crate::process::Termination + 'static>( sigpipe: u8, ) -> isize { let Ok(v) = lang_start_internal( - &move || crate::sys_common::backtrace::__rust_begin_short_backtrace(main).report().to_i32(), + &move || crate::sys::backtrace::__rust_begin_short_backtrace(main).report().to_i32(), argc, argv, sigpipe, |
