We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff7eb9 commit a345f8cCopy full SHA for a345f8c
src/uucore/src/lib/features/fsext.rs
@@ -380,7 +380,7 @@ impl From<StatFs> for MountInfo {
380
}
381
382
383
-#[cfg(all(unix, not(any(target_os = "aix", target_os = "redox"))))]
+#[cfg(all(unix, not(target_os = "redox")))]
384
fn is_dummy_filesystem(fs_type: &str, mount_option: &str) -> bool {
385
// spell-checker:disable
386
match fs_type {
@@ -1224,7 +1224,7 @@ mod tests {
1224
1225
1226
#[test]
1227
- #[cfg(all(unix, not(any(target_os = "aix", target_os = "redox"))))]
+ #[cfg(all(unix, not(target_os = "redox")))]
1228
// spell-checker:ignore (word) binfmt
1229
fn test_binfmt_misc_is_dummy() {
1230
use super::is_dummy_filesystem;
0 commit comments