diff options
| author | ivmarkov <ivan.markov@gmail.com> | 2025-05-07 08:04:21 +0000 |
|---|---|---|
| committer | ivmarkov <ivan.markov@gmail.com> | 2025-05-07 08:04:21 +0000 |
| commit | 392880c004836724dfe7600e6f2e0db5f8bad168 (patch) | |
| tree | 8d19c84ac401b5ac2bd2ec2d8fd0c5e0b8f905df /library/std/src | |
| parent | 891b8525477f5c41a9e56d7b70d64b41e7c344e3 (diff) | |
| download | rust-392880c004836724dfe7600e6f2e0db5f8bad168.tar.gz rust-392880c004836724dfe7600e6f2e0db5f8bad168.zip | |
Fix regression from #140393 for espidf / horizon / nuttx / vita
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/sys/process/unix/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys/process/unix/mod.rs b/library/std/src/sys/process/unix/mod.rs index 2e8b38f7de1..ee8fd8b2ca3 100644 --- a/library/std/src/sys/process/unix/mod.rs +++ b/library/std/src/sys/process/unix/mod.rs @@ -11,6 +11,7 @@ cfg_if::cfg_if! { } else if #[cfg(any(target_os = "espidf", target_os = "horizon", target_os = "vita", target_os = "nuttx"))] { mod unsupported; use unsupported as imp; + pub use unsupported::output; } else { mod unix; use unix as imp; |
