We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c371b6 commit 00c61eeCopy full SHA for 00c61ee
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