1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-15 19:36:16 +00:00

core/fsext: provide stub for read_fs_list on redox

This commit is contained in:
Jeremy Soller 2021-08-06 13:23:21 -06:00
parent cbac771340
commit 318366c900
No known key found for this signature in database
GPG key ID: E988B49EE78A7FB1

View file

@ -440,6 +440,11 @@ pub fn read_fs_list() -> Vec<MountInfo> {
}
mounts
}
#[cfg(target_os = "redox")]
{
// No method to read mounts, yet
Vec::new()
}
}
#[derive(Debug, Clone)]