diff options
Diffstat (limited to 'shell/cmdedit.c')
-rw-r--r-- | shell/cmdedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 03aaa3b2e..fb1946e83 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c @@ -247,13 +247,13 @@ static void goto_new_line(void) } -static inline void out1str(const char *s) +static void out1str(const char *s) { if ( s ) fputs(s, stdout); } -static inline void beep(void) +static void beep(void) { putchar('\007'); } |