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)