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 88944695970ebfd82dce23b26a27ded9fda43fca)
@@ -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;
Index: uspace/app/bdsh/cmds/modules/rm/rm.def
===================================================================
--- uspace/app/bdsh/cmds/modules/rm/rm.def	(revision 216d6fc606ae06cb619154c1ca9763af0f2c1978)
+++ uspace/app/bdsh/cmds/modules/rm/rm.def	(revision 88944695970ebfd82dce23b26a27ded9fda43fca)
@@ -1,5 +1,5 @@
 {
 	"rm",
-	"The rm command",
+	"Remove files and directories",
 	&cmd_rm,
 	&help_cmd_rm,
Index: uspace/app/bdsh/cmds/modules/rm/rm.h
===================================================================
--- uspace/app/bdsh/cmds/modules/rm/rm.h	(revision 216d6fc606ae06cb619154c1ca9763af0f2c1978)
+++ uspace/app/bdsh/cmds/modules/rm/rm.h	(revision 88944695970ebfd82dce23b26a27ded9fda43fca)
@@ -34,9 +34,9 @@
 
 /* Prototypes for the rm command, excluding entry points */
-extern unsigned int rm_start(rm_job_t *);
-extern void rm_end(rm_job_t *rm);
-extern unsigned int rm_recursive(const char *);
-extern unsigned int rm_single(const char *);
-extern unsigned int rm_scope(const char *);
+static unsigned int rm_start(rm_job_t *);
+static void rm_end(rm_job_t *rm);
+static unsigned int rm_recursive(const char *);
+static unsigned int rm_single(const char *);
+static unsigned int rm_scope(const char *);
 
 #endif /* RM_H */
