Index: uspace/lib/libc/include/loader/loader.h
===================================================================
--- uspace/lib/libc/include/loader/loader.h	(revision 301ff30236f92bdd150603d5f6eb622239140696)
+++ uspace/lib/libc/include/loader/loader.h	(revision 4a68194df2c9adee6f05acf34c5c51ef658f99d2)
@@ -51,5 +51,5 @@
 extern int loader_set_pathname(loader_t *, const char *);
 extern int loader_set_args(loader_t *, char *const[]);
-extern int loader_set_files(loader_t *, inode_t *const[]);
+extern int loader_set_files(loader_t *, fdi_node_t *const[]);
 extern int loader_load_program(loader_t *);
 extern int loader_run(loader_t *);
Index: uspace/lib/libc/include/loader/pcb.h
===================================================================
--- uspace/lib/libc/include/loader/pcb.h	(revision 301ff30236f92bdd150603d5f6eb622239140696)
+++ uspace/lib/libc/include/loader/pcb.h	(revision 4a68194df2c9adee6f05acf34c5c51ef658f99d2)
@@ -61,5 +61,5 @@
 	int filc;
 	/** Preset files. */
-	inode_t **filv;
+	fdi_node_t **filv;
 	
 	/*
Index: uspace/lib/libc/include/vfs/vfs.h
===================================================================
--- uspace/lib/libc/include/vfs/vfs.h	(revision 301ff30236f92bdd150603d5f6eb622239140696)
+++ uspace/lib/libc/include/vfs/vfs.h	(revision 4a68194df2c9adee6f05acf34c5c51ef658f99d2)
@@ -41,22 +41,26 @@
 #include <stdio.h>
 
+/**
+ * This type is a libc version of the VFS triplet.
+ * It uniquelly identifies a file system node within a file system instance.
+ */
 typedef struct {
 	fs_handle_t fs_handle;
 	dev_handle_t dev_handle;
 	fs_index_t index;
-} inode_t;
+} fdi_node_t;
 
 extern char *absolutize(const char *, size_t *);
 
 extern int mount(const char *, const char *, const char *, const char *,
-    unsigned int flags);
+    unsigned int);
 
-extern int open_node(inode_t *node, int oflag);
+extern int open_node(fdi_node_t *, int);
 extern int fd_phone(int);
-extern void fd_node(int, inode_t *);
+extern void fd_node(int, fdi_node_t *);
 
-extern FILE *fopen_node(inode_t *node, const char *);
+extern FILE *fopen_node(fdi_node_t *, const char *);
 extern int fphone(FILE *);
-extern void fnode(FILE *stream, inode_t *node);
+extern void fnode(FILE *, fdi_node_t *);
 
 #endif
