Index: uspace/lib/c/generic/vfs/vfs.c
===================================================================
--- uspace/lib/c/generic/vfs/vfs.c	(revision 9c4cf0dece5b4450b06dbeff053298634d87e0ae)
+++ uspace/lib/c/generic/vfs/vfs.c	(revision 151f1cc5a424a21091c1839670a7631416253a1f)
@@ -116,5 +116,5 @@
 }
 
-int _vfs_walk(int parent, const char *path, int flags)
+int vfs_walk(int parent, const char *path, int flags)
 {
 	async_exch_t *exch = vfs_exchange_begin();
@@ -148,5 +148,5 @@
 		return ENOENT;
 	}
-	int rc = _vfs_walk(root, p, flags);
+	int rc = vfs_walk(root, p, flags);
 	vfs_put(root);
 	free(p);
@@ -338,5 +338,5 @@
 		}
 		
-		int mpfd = _vfs_walk(root_fd, mpa, WALK_DIRECTORY);
+		int mpfd = vfs_walk(root_fd, mpa, WALK_DIRECTORY);
 		if (mpfd >= 0) {
 			rc = vfs_mount(mpfd, fs_name, service_id, opts, flags,
@@ -721,5 +721,5 @@
 {
 	int flags = (kind == KIND_DIRECTORY) ? WALK_DIRECTORY : WALK_REGULAR;
-	int file = _vfs_walk(parent, child, WALK_MUST_CREATE | flags);
+	int file = vfs_walk(parent, child, WALK_MUST_CREATE | flags);
 
 	if (file < 0)
