summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-11-04 16:05:44 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-11-05 09:29:47 -0600
commit54998f6ef140ad80229fc59ea11a1331c9ad2666 (patch)
treea2fed0e8530f65df2576503b801c91d781a99db7
parentlpc23xx_tli800-testsuite.tcfg: Add dl01 (diff)
downloadrtems-54998f6ef140ad80229fc59ea11a1331c9ad2666.tar.bz2
shell/main_edit.c: Fix warnings
-rw-r--r--cpukit/libmisc/shell/main_edit.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/cpukit/libmisc/shell/main_edit.c b/cpukit/libmisc/shell/main_edit.c
index fc7775ce61..0feb828c31 100644
--- a/cpukit/libmisc/shell/main_edit.c
+++ b/cpukit/libmisc/shell/main_edit.c
@@ -781,7 +781,7 @@ static void outstr(char *str) {
fputs(str, stdout);
}
-static void clear_screen() {
+static void clear_screen(void) {
outstr(CLRSCR);
}
@@ -809,7 +809,7 @@ static void get_modifier_keys(int *shift, int *ctrl) {
#endif
}
-static int getachar()
+static int getachar(void)
{
int ch = getchar();
#if KEY_HISTORY
@@ -823,7 +823,7 @@ static int getachar()
return ch;
}
-static int getkey() {
+static int getkey(void) {
int ch, shift, ctrl;
ch = getachar();
@@ -1058,7 +1058,7 @@ static int prompt(struct editor *ed, char *msg, int selection) {
}
}
-static int ask() {
+static int ask(void) {
int ch = getachar();
return ch == 'y' || ch == 'Y';
}
@@ -1918,7 +1918,7 @@ static void goto_line(struct editor *ed) {
ed->refresh = 1;
}
-struct editor *next_file(struct editor *ed) {
+static struct editor *next_file(struct editor *ed) {
ed = ed->env->current = ed->next;
ed->refresh = 1;
return ed;
@@ -2156,14 +2156,16 @@ static void edit(struct editor *ed) {
//
// main
//
-
-int rtems_shell_main_edit(int argc, char *argv[]) {
+static int rtems_shell_main_edit(int argc, char *argv[])
+{
struct env env;
int rc;
int i;
sigset_t blocked_sigmask, orig_sigmask;
-#if defined(__linux__) || defined(__rtems__)
+#if defined(__linux__)
struct termios tio;
+#endif
+#if defined(__linux__) || defined(__rtems__)
struct termios orig_tio;
#endif
#ifdef SANOS