diff options
| author | bors <bors@rust-lang.org> | 2025-02-08 21:11:17 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-02-08 21:11:17 +0000 |
| commit | 43ca9d18e333797f0aa3b525501a7cec8d61a96b (patch) | |
| tree | 9ddd9f6cedb817b31bb6b0b19e17f8f1a5526b10 /library/std/src/sys/pal/zkvm/stdio.rs | |
| parent | 73bf7947e9ab731bf2764db219cd9cda216a3aed (diff) | |
| parent | 45771e43babdecb3b6a74776c8ebdc30e0f31d1c (diff) | |
| download | rust-43ca9d18e333797f0aa3b525501a7cec8d61a96b.tar.gz rust-43ca9d18e333797f0aa3b525501a7cec8d61a96b.zip | |
Auto merge of #136747 - matthiaskrgr:rollup-qfiiv4n, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #135696 (std: move `io` module out of `pal`, get rid of `sys_common::io`) - #136099 (Optimize `Rc::<str>::default()` implementation) - #136200 (Generate correct terminate block under Wasm EH) - #136626 (create `initial_rustdoc` field in `Build`) - #136657 (Make empty-line-after an early clippy lint) - #136679 (ci: Use largedisk for loongarch) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src/sys/pal/zkvm/stdio.rs')
| -rw-r--r-- | library/std/src/sys/pal/zkvm/stdio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/zkvm/stdio.rs b/library/std/src/sys/pal/zkvm/stdio.rs index dd218c8894c..5f1d06dd1d7 100644 --- a/library/std/src/sys/pal/zkvm/stdio.rs +++ b/library/std/src/sys/pal/zkvm/stdio.rs @@ -54,7 +54,7 @@ impl io::Write for Stderr { } } -pub const STDIN_BUF_SIZE: usize = crate::sys_common::io::DEFAULT_BUF_SIZE; +pub const STDIN_BUF_SIZE: usize = crate::sys::io::DEFAULT_BUF_SIZE; pub fn is_ebadf(_err: &io::Error) -> bool { true |
