Index: uspace/app/bdsh/input.c
===================================================================
--- uspace/app/bdsh/input.c	(revision 6939edbd23ef9f884cd0a0663537b96d2656ce74)
+++ uspace/app/bdsh/input.c	(revision 28ee877ef38c210fe4bb7514af358e4d4f126f50)
@@ -63,5 +63,5 @@
  * invokes the built-in entry point (a[0]) passing all arguments in a[] to
  * the handler */
-int tok_input(cliuser_t *usr)
+int process_input(cliuser_t *usr)
 {
 	char *cmd[WORD_MAX];
Index: uspace/app/bdsh/input.h
===================================================================
--- uspace/app/bdsh/input.h	(revision 6939edbd23ef9f884cd0a0663537b96d2656ce74)
+++ uspace/app/bdsh/input.h	(revision 28ee877ef38c210fe4bb7514af358e4d4f126f50)
@@ -7,5 +7,5 @@
 
 extern void get_input(cliuser_t *);
-extern int tok_input(cliuser_t *);
+extern int process_input(cliuser_t *);
 extern int input_init(void);
 
Index: uspace/app/bdsh/scli.c
===================================================================
--- uspace/app/bdsh/scli.c	(revision 6939edbd23ef9f884cd0a0663537b96d2656ce74)
+++ uspace/app/bdsh/scli.c	(revision 28ee877ef38c210fe4bb7514af358e4d4f126f50)
@@ -92,5 +92,5 @@
 		get_input(&usr);
 		if (NULL != usr.line) {
-			ret = tok_input(&usr);
+			ret = process_input(&usr);
 			cli_set_prompt(&usr);
 			usr.lasterr = ret;
