From d672fe098e79c316a30e04006b6e7c6dac2e2431 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 6 Aug 2021 13:21:19 -0600 Subject: [PATCH] core/fsext: use statvfs on redox --- src/uucore/src/lib/features/fsext.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/uucore/src/lib/features/fsext.rs b/src/uucore/src/lib/features/fsext.rs index d3eec468a..40b5edd8a 100644 --- a/src/uucore/src/lib/features/fsext.rs +++ b/src/uucore/src/lib/features/fsext.rs @@ -94,7 +94,8 @@ pub use libc::statfs as StatFs; target_os = "netbsd", target_os = "openbsd", target_os = "bitrig", - target_os = "dragonfly" + target_os = "dragonfly", + target_os = "redox" ))] pub use libc::statvfs as StatFs; @@ -110,7 +111,8 @@ pub use libc::statfs as statfs_fn; target_os = "netbsd", target_os = "openbsd", target_os = "bitrig", - target_os = "dragonfly" + target_os = "dragonfly", + target_os = "redox" ))] pub use libc::statvfs as statfs_fn;