We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d6cc18 commit e78473cCopy full SHA for e78473c
src/sys/statfs.rs
@@ -208,7 +208,9 @@ pub const XENFS_SUPER_MAGIC: FsType = FsType(libc::XENFS_SUPER_MAGIC as fs_type_
208
#[cfg(any(target_os = "linux", target_os = "android"))]
209
#[allow(missing_docs)]
210
pub const NSFS_MAGIC: FsType = FsType(libc::NSFS_MAGIC as fs_type_t);
211
-
+#[cfg(all(any(target_os = "linux", target_os = "android"), not(target_env = "musl")))]
212
+#[allow(missing_docs)]
213
+pub const XFS_SUPER_MAGIC: FsType = FsType(libc::XFS_SUPER_MAGIC as fs_type_t);
214
215
impl Statfs {
216
/// Magic code defining system type
0 commit comments