diff options
author | Stu Grossman <grossman@cygnus> | 1992-06-14 22:21:18 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-06-14 22:21:18 +0000 |
commit | 7c88553a91c2ba29a60cf9f6c3eb62aceb7ebc17 (patch) | |
tree | 00069e942c7439b0ea298d3a734f4928a950768c /readline/readline.c | |
parent | bcbf95597c9ce57a9899705d2242e6a1714f6301 (diff) | |
download | gdb-7c88553a91c2ba29a60cf9f6c3eb62aceb7ebc17.zip gdb-7c88553a91c2ba29a60cf9f6c3eb62aceb7ebc17.tar.gz gdb-7c88553a91c2ba29a60cf9f6c3eb62aceb7ebc17.tar.bz2 |
* readline.c (insert_some_chars): Return void.
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; |