about summary refs log tree commit diff
path: root/library/std/src/sys/stdio/unsupported.rs
AgeCommit message (Collapse)AuthorLines
2025-03-22Implement optional methods for unsupported stdioThalia Archibald-1/+64
Match what `std::io::Empty` does, since it is very similar. However, still evaluate the `fmt::Arguments` in `write_fmt` to be consistent with other platforms.
2025-03-11Deduplicate platform stdio typesThalia Archibald-17/+1
2025-03-09std: move stdio to `sys`joboet-0/+59
As per #117276, this moves the platform definitions of `Stdout` and friends into `sys`. This PR also unifies the UNIX and Hermit implementations and moves the `__rust_print_err` function needed by libunwind on SGX into the dedicated module for such helper functions.