aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-03-02 21:46:28 +0000
committerTom Tromey <tromey@redhat.com>2010-03-02 21:46:28 +0000
commita58d7472bda022d9395afda54c17a2d48df81b1f (patch)
treee2c5110b42e88e7b20b667389daa63f4b6a2af2d /gdb/cli
parentce50d78b1002f7b7afa72dee74c1972e6ff36cbb (diff)
downloadfsf-binutils-gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.zip
fsf-binutils-gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.tar.gz
fsf-binutils-gdb-a58d7472bda022d9395afda54c17a2d48df81b1f.tar.bz2
* mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
* defs.h (read_command_lines_1): Add missing 'void'. * cli/cli-script.c (recurse_read_control_structure): Add missing 'void'. (read_next_line): Likewise. (read_command_lines_1): Likewise.
Diffstat (limited to 'gdb/cli')
-rw-r--r--gdb/cli/cli-script.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/cli/cli-script.c b/gdb/cli/cli-script.c
index 75a927e..185de36 100644
--- a/gdb/cli/cli-script.c
+++ b/gdb/cli/cli-script.c
@@ -39,14 +39,14 @@
/* Prototypes for local functions */
static enum command_control_type
-recurse_read_control_structure (char * (*read_next_line_func) (),
+recurse_read_control_structure (char * (*read_next_line_func) (void),
struct command_line *current_cmd);
static char *insert_args (char *line);
static struct cleanup * setup_user_args (char *p);
-static char *read_next_line ();
+static char *read_next_line (void);
/* Level of control structure when reading. */
static int control_level;
@@ -845,7 +845,7 @@ realloc_body_list (struct command_line *command, int new_length)
from stdout. */
static char *
-read_next_line ()
+read_next_line (void)
{
char *prompt_ptr, control_prompt[256];
int i = 0;
@@ -997,7 +997,7 @@ process_next_line (char *p, struct command_line **command, int parse_commands)
*/
static enum command_control_type
-recurse_read_control_structure (char * (*read_next_line_func) (),
+recurse_read_control_structure (char * (*read_next_line_func) (void),
struct command_line *current_cmd)
{
int current_body, i;
@@ -1145,7 +1145,7 @@ read_command_lines (char *prompt_arg, int from_tty, int parse_commands)
obtained using READ_NEXT_LINE_FUNC. */
struct command_line *
-read_command_lines_1 (char * (*read_next_line_func) (), int parse_commands)
+read_command_lines_1 (char * (*read_next_line_func) (void), int parse_commands)
{
struct command_line *head, *tail, *next;
struct cleanup *old_chain;