From 392880c004836724dfe7600e6f2e0db5f8bad168 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Wed, 7 May 2025 08:04:21 +0000 Subject: [PATCH] Fix regression from #140393 for espidf / horizon / nuttx / vita --- library/std/src/sys/process/unix/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/sys/process/unix/mod.rs b/library/std/src/sys/process/unix/mod.rs index 2e8b38f7de1b6..ee8fd8b2ca3c6 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;