summaryrefslogtreecommitdiff
path: root/src/sys/statvfs.rs
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2018-01-08 00:13:59 +0100
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2018-02-08 08:52:53 +0100
commit08624d0a5c3649fea6463836690ae9b7f01093ac (patch)
treeb03f48df7b36aa58b0301b01878eca7b129b2541 /src/sys/statvfs.rs
parentdab0a5e52266f014bdf52c3181d30f068b050250 (diff)
downloadnix-08624d0a5c3649fea6463836690ae9b7f01093ac.zip
make statfs/statvfs to be available wherever they are available
libc reads sys/statvfs.h on all OS except Windows which nix doesn't care about. Closes: https://github.com/nix-rust/nix/issues/831 Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'src/sys/statvfs.rs')
-rw-r--r--src/sys/statvfs.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sys/statvfs.rs b/src/sys/statvfs.rs
index 41ca44f2..845ae0db 100644
--- a/src/sys/statvfs.rs
+++ b/src/sys/statvfs.rs
@@ -32,13 +32,13 @@ libc_bitflags!(
#[cfg(any(target_os = "android", target_os = "linux"))]
ST_MANDLOCK;
/// Write on file/directory/symlink
- #[cfg(any(target_os = "android", target_os = "linux"))]
+ #[cfg(target_os = "linux")]
ST_WRITE;
/// Append-only file
- #[cfg(any(target_os = "android", target_os = "linux"))]
+ #[cfg(target_os = "linux")]
ST_APPEND;
/// Immutable file
- #[cfg(any(target_os = "android", target_os = "linux"))]
+ #[cfg(target_os = "linux")]
ST_IMMUTABLE;
/// Do not update access times on files
#[cfg(any(target_os = "android", target_os = "linux"))]