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) | |||
247 | } | 247 | } |
248 | 248 | ||
249 | 249 | ||
250 | static inline void out1str(const char *s) | 250 | static void out1str(const char *s) |
251 | { | 251 | { |
252 | if ( s ) | 252 | if ( s ) |
253 | fputs(s, stdout); | 253 | fputs(s, stdout); |
254 | } | 254 | } |
255 | 255 | ||
256 | static inline void beep(void) | 256 | static void beep(void) |
257 | { | 257 | { |
258 | putchar('\007'); | 258 | putchar('\007'); |
259 | } | 259 | } |