Index: uspace/app/df/df.c
===================================================================
--- uspace/app/df/df.c	(revision 35b7d86e413b1461c120a1859a4df4918fe6b515)
+++ uspace/app/df/df.c	(revision 23a0368c8849e72c980ea32ce3092dffde6cf9e8)
@@ -40,5 +40,4 @@
 #include <stdint.h>
 #include <getopt.h>
-#include <sys/statfs.h>
 #include <errno.h>
 #include <adt/list.h>
@@ -124,5 +123,5 @@
 	print_header();
 	list_foreach(mtab_list, link, mtab_ent_t, mtab_ent) {
-		if (statfs(mtab_ent->mp, &st) == 0) {
+		if (vfs_statfs_path(mtab_ent->mp, &st) == 0) {
 			print_statfs(&st, mtab_ent->fs_name, mtab_ent->mp);
 		} else {
