Index: uspace/lib/c/generic/vfs/vfs.c
===================================================================
--- uspace/lib/c/generic/vfs/vfs.c	(revision 6749febbf14fcee65590d678af2d7f90b8921903)
+++ uspace/lib/c/generic/vfs/vfs.c	(revision 38db62889297c9b33b9db3189dea9609d55654a9)
@@ -742,4 +742,9 @@
 }
 
+int remove(const char *path)
+{
+	return unlink(path);
+}
+
 int chdir(const char *path)
 {
Index: uspace/lib/c/include/stdio.h
===================================================================
--- uspace/lib/c/include/stdio.h	(revision 6749febbf14fcee65590d678af2d7f90b8921903)
+++ uspace/lib/c/include/stdio.h	(revision 38db62889297c9b33b9db3189dea9609d55654a9)
@@ -151,4 +151,5 @@
 /* Misc file functions */
 extern int rename(const char *, const char *);
+extern int remove(const char *);
 
 #endif
