diff options
Diffstat (limited to 'readline/readline.c')
-rw-r--r-- | readline/readline.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/readline/readline.c b/readline/readline.c index 696abf6..db22c7f 100644 --- a/readline/readline.c +++ b/readline/readline.c @@ -163,7 +163,7 @@ extern char *tilde_expand (); static update_line (); static void output_character_function (); static delete_chars (); -static insert_some_chars (); +static void insert_some_chars (); #if defined (VOID_SIGHANDLER) # define sighandler void @@ -2171,7 +2171,7 @@ delete_chars (count) } /* Insert COUNT characters from STRING to the output stream. */ -static +static void insert_some_chars (string, count) char *string; int count; |