aboutsummaryrefslogtreecommitdiffstats
path: root/include/fusestat.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fusestat.h')
-rw-r--r--include/fusestat.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/fusestat.h b/include/fusestat.h
new file mode 100644
index 0000000..a18509c
--- /dev/null
+++ b/include/fusestat.h
@@ -0,0 +1,14 @@
+#ifndef __FUSESTAT_H_
+#define __FUSESTAT_H_
+/* this is seperated out into its own file because both
+ * kernel and lib use it, but neither can #include the
+ * other's headerfile */
+typedef struct fuse_statfs {
+ long block_size;
+ long blocks;
+ long blocks_free;
+ long files;
+ long files_free;
+ long namelen;
+} fuse_statfs_t;
+#endif