Index: uspace/app/bdsh/cmds/modules/rm/rm.c
===================================================================
--- uspace/app/bdsh/cmds/modules/rm/rm.c	(revision 216d6fc606ae06cb619154c1ca9763af0f2c1978)
+++ uspace/app/bdsh/cmds/modules/rm/rm.c	(revision a56f4b291fe3ec936421cc5ce9dceedba5d796a7)
@@ -58,5 +58,5 @@
 };
 
-unsigned int rm_start(rm_job_t *rm)
+static unsigned int rm_start(rm_job_t *rm)
 {
 	rm->recursive = 0;
@@ -86,5 +86,5 @@
 }
 
-void rm_end(rm_job_t *rm)
+static void rm_end(rm_job_t *rm)
 {
 	if (NULL != rm->nwd)
@@ -100,5 +100,5 @@
 }
 
-unsigned int rm_recursive(const char *path)
+static unsigned int rm_recursive(const char *path)
 {
 	int rc;
@@ -115,5 +115,5 @@
 }
 
-unsigned int rm_single(const char *path)
+static unsigned int rm_single(const char *path)
 {
 	if (unlink(path)) {
@@ -124,5 +124,5 @@
 }
 
-unsigned int rm_scope(const char *path)
+static unsigned int rm_scope(const char *path)
 {
 	int fd;
