aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2002-10-07 10:24:26 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2002-10-07 10:24:26 +0000
commit24ed9451bdd3450954e900c77a767ed3bcb17e72 (patch)
tree5a0b365762011eadd00b2c2e76fda16823db4187 /include/fuse.h
parent27fc1b30dcd61555597363a4ab12e457e467d73c (diff)
downloadlibfuse-24ed9451bdd3450954e900c77a767ed3bcb17e72.tar.gz
statfs header cleanup
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 27b08de..78cd877 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -15,7 +15,6 @@
#include <sys/stat.h>
#include <utime.h>
-#include <fusestat.h>
/* ----------------------------------------------------------- *
* Basic FUSE API *
* ----------------------------------------------------------- */
@@ -23,6 +22,16 @@
/** Handle for a FUSE filesystem */
struct fuse;
+/* Statfs structure used by FUSE */
+struct fuse_statfs {
+ long block_size;
+ long blocks;
+ long blocks_free;
+ long files;
+ long files_free;
+ long namelen;
+};
+
/** Handle for a getdir() operation */
typedef struct fuse_dirhandle *fuse_dirh_t;