Imported Upstream version 3.3.0
[debian/amanda] / gnulib / regenerate / fsusage-no-bool.patch
1 diff --git a/gnulib/fsusage.h b/gnulib/fsusage.h
2 index bb2d86f..b3deefc 100644
3 --- a/gnulib/fsusage.h
4 +++ b/gnulib/fsusage.h
5 @@ -22,7 +22,6 @@
6  # define FSUSAGE_H_
7  
8  # include <stdint.h>
9 -# include <stdbool.h>
10  
11  struct fs_usage
12  {
13 @@ -30,7 +29,7 @@ struct fs_usage
14    uintmax_t fsu_blocks;         /* Total blocks. */
15    uintmax_t fsu_bfree;          /* Free blocks available to superuser. */
16    uintmax_t fsu_bavail;         /* Free blocks available to non-superuser. */
17 -  bool fsu_bavail_top_bit_set;  /* 1 if fsu_bavail represents a value < 0.  */
18 +  int fsu_bavail_top_bit_set;   /* 1 if fsu_bavail represents a value < 0.  */
19    uintmax_t fsu_files;          /* Total file nodes. */
20    uintmax_t fsu_ffree;          /* Free file nodes. */
21  };