Index: uspace/lib/c/include/sys/statfs.h
===================================================================
--- uspace/lib/c/include/sys/statfs.h	(revision 6afc9d780e775e54c1cfb5d3c57fb749979b18d2)
+++ uspace/lib/c/include/sys/statfs.h	(revision 0b97336d11bcc58a2ceb2de62e7d789187fda193)
@@ -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 */
 };
 
