diff options
| author | joboet <jonasboettiger@icloud.com> | 2025-01-18 19:12:14 +0100 | 
|---|---|---|
| committer | joboet <jonasboettiger@icloud.com> | 2025-02-07 16:54:07 +0100 | 
| commit | 7433ba62b10126b0ae8b78d711f19402db663101 (patch) | |
| tree | a1103b5cb2ffcc10b9fe88e8ff76f9b671189f5a /library/std/src/sys/pal/unix/stdio.rs | |
| parent | a9df224ac7d935b83b8e5707fdeb92907b172f19 (diff) | |
| download | rust-7433ba62b10126b0ae8b78d711f19402db663101.tar.gz rust-7433ba62b10126b0ae8b78d711f19402db663101.zip | |
std: get rid of `sys_common::io`
Diffstat (limited to 'library/std/src/sys/pal/unix/stdio.rs')
| -rw-r--r-- | library/std/src/sys/pal/unix/stdio.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/library/std/src/sys/pal/unix/stdio.rs b/library/std/src/sys/pal/unix/stdio.rs index 97e75f1b5b6..8c2f61a40de 100644 --- a/library/std/src/sys/pal/unix/stdio.rs +++ b/library/std/src/sys/pal/unix/stdio.rs @@ -92,7 +92,7 @@ pub fn is_ebadf(err: &io::Error) -> bool { err.raw_os_error() == Some(libc::EBADF as i32) } -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 panic_output() -> Option<impl io::Write> { Some(Stderr::new()) | 
