aboutsummaryrefslogtreecommitdiff
path: root/shell/cmdedit.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/cmdedit.c')
-rw-r--r--shell/cmdedit.c4
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
250static inline void out1str(const char *s) 250static 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
256static inline void beep(void) 256static void beep(void)
257{ 257{
258 putchar('\007'); 258 putchar('\007');
259} 259}