* mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
authorTom Tromey <tromey@redhat.com>
Tue, 2 Mar 2010 21:46:28 +0000 (21:46 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 2 Mar 2010 21:46:28 +0000 (21:46 +0000)
* 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.

gdb/ChangeLog
gdb/cli/cli-script.c
gdb/defs.h
gdb/mi/mi-cmd-break.c

index c41c38d..92a7254 100644 (file)
@@ -1,3 +1,12 @@
+2010-03-02  Tom Tromey  <tromey@redhat.com>
+
+       * 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.
+
 2010-03-02  Ulrich Weigand  <uweigand@de.ibm.com>
 
        * spu-tdep.c (spu_analyze_prologue): Track instruction to
index 75a927e..185de36 100644 (file)
 /* 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;
index b8973b3..ca903b8 100644 (file)
@@ -707,7 +707,7 @@ struct command_line
   };
 
 extern struct command_line *read_command_lines (char *, int, int);
-extern struct command_line *read_command_lines_1 (char * (*) (), int);
+extern struct command_line *read_command_lines_1 (char * (*) (void), int);
 
 extern void free_command_lines (struct command_line **);
 
index 56fa066..1164414 100644 (file)
@@ -263,7 +263,7 @@ static int mi_command_line_array_cnt;
 static int mi_command_line_array_ptr;
 
 static char *
-mi_read_next_line ()
+mi_read_next_line (void)
 {
   if (mi_command_line_array_ptr == mi_command_line_array_cnt)
     return NULL;