We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc98972 commit 6da9353Copy full SHA for 6da9353
vm/src/stdlib/stat.rs
@@ -72,6 +72,11 @@ mod stat {
72
73
// TODO: RUSTPYTHON Support BSD
74
// https://man.freebsd.org/cgi/man.cgi?stat(2)
75
+
76
+ #[cfg(target_os = "macos")]
77
+ #[pyattr]
78
+ pub const S_IFWHT: Mode = 0o160000;
79
+ #[cfg(not(target_os = "macos"))]
80
#[pyattr]
81
pub const S_IFWHT: Mode = 0;
82
0 commit comments