Index: uspace/lib/c/include/sys/statfs.h
===================================================================
--- uspace/lib/c/include/sys/statfs.h	(revision 8ffedd8013b66e0367a7ea63cfa680b43bf63a40)
+++ uspace/lib/c/include/sys/statfs.h	(revision 61042de30507a8c30110c0dfce737a78456207d3)
@@ -37,10 +37,11 @@
 
 #include <sys/types.h>
+#include <ipc/vfs.h>
 
 struct statfs { 
-	uint32_t    f_type;     /* type of file system  */
-	uint32_t    f_bsize;    /* fundamental file system block size */
-	uint64_t    f_blocks;   /* total data blocks in file system */
-	uint64_t    f_bfree;    /* free blocks in fs */
+	char fs_name[FS_NAME_MAXLEN + 1];
+	uint32_t f_bsize;    /* fundamental file system block size */
+	uint64_t f_blocks;   /* total data blocks in file system */
+	uint64_t f_bfree;    /* free blocks in fs */
 };
 
