summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/main_mkdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/shell/main_mkdir.c')
-rw-r--r--cpukit/libmisc/shell/main_mkdir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libmisc/shell/main_mkdir.c b/cpukit/libmisc/shell/main_mkdir.c
index 5c9f365226..1d42ed103b 100644
--- a/cpukit/libmisc/shell/main_mkdir.c
+++ b/cpukit/libmisc/shell/main_mkdir.c
@@ -27,7 +27,7 @@
#include <rtems/shell.h>
#include "internal.h"
-int main_mkdir(int argc, char *argv[]) {
+int rtems_shell_main_mkdir(int argc, char *argv[]) {
char *dir;
int n;
@@ -41,11 +41,11 @@ int main_mkdir(int argc, char *argv[]) {
return errno;
}
-shell_cmd_t Shell_MKDIR_Command = {
+rtems_shell_cmd_t rtems_Shell_MKDIR_Command = {
"mkdir", /* name */
"mkdir dir # make a directory", /* usage */
"files", /* topic */
- main_mkdir, /* command */
+ rtems_shell_main_mkdir, /* command */
NULL, /* alias */
NULL /* next */
};