diff --git a/src/backend/libc/fs/syscalls.rs b/src/backend/libc/fs/syscalls.rs index 71bc8b0ab..009a302de 100644 --- a/src/backend/libc/fs/syscalls.rs +++ b/src/backend/libc/fs/syscalls.rs @@ -52,7 +52,6 @@ use crate::fs::StatFs; #[cfg(not(any(target_os = "espidf", target_os = "vita")))] use crate::fs::Timestamps; #[cfg(not(any( - apple, target_os = "espidf", target_os = "redox", target_os = "vita", @@ -1196,7 +1195,6 @@ pub(crate) fn chownat( } #[cfg(not(any( - apple, target_os = "espidf", target_os = "horizon", target_os = "redox", diff --git a/src/fs/at.rs b/src/fs/at.rs index f35ce5aca..896212ced 100644 --- a/src/fs/at.rs +++ b/src/fs/at.rs @@ -20,7 +20,7 @@ use crate::fs::CloneFlags; use crate::fs::RenameFlags; #[cfg(not(target_os = "espidf"))] use crate::fs::Stat; -#[cfg(not(any(apple, target_os = "espidf", target_os = "vita", target_os = "wasi")))] +#[cfg(not(any(target_os = "espidf", target_os = "vita", target_os = "wasi")))] use crate::fs::{Dev, FileType}; #[cfg(not(any(target_os = "espidf", target_os = "wasi")))] use crate::fs::{Gid, Uid}; @@ -464,7 +464,6 @@ pub fn fclonefileat( /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799/functions/mknodat.html /// [Linux]: https://man7.org/linux/man-pages/man2/mknodat.2.html #[cfg(not(any( - apple, target_os = "espidf", target_os = "horizon", target_os = "vita", @@ -491,7 +490,6 @@ pub fn mknodat( /// /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799/functions/mkfifoat.html #[cfg(not(any( - apple, target_os = "espidf", target_os = "horizon", target_os = "vita",