From f5024a60c2176d4fe3e8bb39d7ace0953e7bd622 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Mon, 9 Mar 2026 15:19:19 +0100 Subject: [PATCH] unistd: remove gate from mkfifo --- src/unistd.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/unistd.rs b/src/unistd.rs index f8a8e25bb3..11150bc0ca 100644 --- a/src/unistd.rs +++ b/src/unistd.rs @@ -812,7 +812,6 @@ pub fn mkdir(path: &P, mode: crate::sys::stat::Mode) -> Res /// } /// ``` #[inline] -#[cfg(not(target_os = "redox"))] // RedoxFS does not support fifo yet pub fn mkfifo(path: &P, mode: crate::sys::stat::Mode) -> Result<()> { let res = path.with_nix_path(|cstr| unsafe { libc::mkfifo(cstr.as_ptr(), mode.bits() as libc::mode_t)