1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-21 23:27:08 +00:00
termux-packages/packages/below/nix-0.23.1-src-sys-statfs.rs.diff
2022-04-11 11:04:10 +09:00

13 lines
389 B
Diff

--- a/src/sys/statfs.rs
+++ b/src/sys/statfs.rs
@@ -132,6 +132,9 @@
#[cfg(all(target_os = "linux", not(target_env = "musl")))]
#[allow(missing_docs)]
pub const CGROUP2_SUPER_MAGIC: FsType = FsType(libc::CGROUP2_SUPER_MAGIC as fs_type_t);
+#[cfg(target_os = "android")]
+#[allow(missing_docs)]
+pub const CGROUP2_SUPER_MAGIC: FsType = FsType(0x63677270 as fs_type_t);
impl Statfs {