Index: uspace/app/bdsh/cmds/modules/ls/entry.h
===================================================================
--- uspace/app/bdsh/cmds/modules/ls/entry.h	(revision 43e02a6fa3d0ad9f13fe920424ab329f790f03f1)
+++ uspace/app/bdsh/cmds/modules/ls/entry.h	(revision 8722b38cf01cff4f013f463827c3ef3dabe74eeb)
@@ -3,6 +3,6 @@
 
 /* Entry points for the ls command */
-extern int * cmd_ls(char **);
-extern void * help_cmd_ls(unsigned int);
+extern int cmd_ls(char **);
+extern void help_cmd_ls(unsigned int);
 
 #endif /* LS_ENTRY_H */
Index: uspace/app/bdsh/cmds/modules/ls/ls.c
===================================================================
--- uspace/app/bdsh/cmds/modules/ls/ls.c	(revision 43e02a6fa3d0ad9f13fe920424ab329f790f03f1)
+++ uspace/app/bdsh/cmds/modules/ls/ls.c	(revision 8722b38cf01cff4f013f463827c3ef3dabe74eeb)
@@ -133,5 +133,5 @@
 }
 
-void * help_cmd_ls(unsigned int level)
+void help_cmd_ls(unsigned int level)
 {
 	if (level == HELP_SHORT) {
@@ -143,8 +143,8 @@
 	}
 
-	return CMD_VOID;
+	return;
 }
 
-int * cmd_ls(char **argv)
+int cmd_ls(char **argv)
 {
 	unsigned int argc;
