summaryrefslogtreecommitdiff
path: root/gdb/cli/cli-script.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2010-03-02 21:46:26 +0000
committerTom Tromey <tromey@redhat.com>2010-03-02 21:46:26 +0000
commit93f70109e8252edbdb587662787aec940b73d45a (patch)
tree27bd2e391b0127c798b286629e234ad766df1331 /gdb/cli/cli-script.c
parent770b4b6663cb2397f85a0628f3bd9126b50a70cf (diff)
downloadgdb-93f70109e8252edbdb587662787aec940b73d45a.tar.gz
* 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/cli-script.c')
-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 75a927ec2ff..185de361039 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;