diff options
author | Jim Meyering <jim@meyering.net> | 1998-03-19 22:17:43 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-03-19 22:17:43 +0000 |
commit | 33179975d70328ed7171124f27a8f8869d925942 (patch) | |
tree | 48ad5e6c14bfdaa88e26a41cd8dcbd5e28a57ddb | |
parent | d4a8891aefb8f21fd9c0630e6de72b1db90be0a3 (diff) | |
download | coreutils-33179975d70328ed7171124f27a8f8869d925942.tar.xz |
(struct fs_usage): New member
fsu_bavail_top_bit_set.
-rw-r--r-- | lib/fsusage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/fsusage.h b/lib/fsusage.h index ef90617fc..e0c0db581 100644 --- a/lib/fsusage.h +++ b/lib/fsusage.h @@ -26,6 +26,7 @@ struct fs_usage uintmax_t fsu_blocks; /* Total blocks. */ uintmax_t fsu_bfree; /* Free blocks available to superuser. */ uintmax_t fsu_bavail; /* Free blocks available to non-superuser. */ + int fsu_bavail_top_bit_set; /* 1 if fsu_bavail represents a value < 0. */ uintmax_t fsu_files; /* Total file nodes. */ uintmax_t fsu_ffree; /* Free file nodes. */ }; |