Eliminate PARAMS from function pointer declarations.

This commit is contained in:
Kevin Buettner
2000-06-04 00:41:10 +00:00
parent 450005e7c2
commit 507f3c78fb
53 changed files with 238 additions and 233 deletions

View File

@@ -54,7 +54,7 @@ extern void nexti_command (char *, int);
extern void continue_command (char *, int);
extern int (*ui_loop_hook) PARAMS ((int));
extern int (*ui_loop_hook) (int);
/* Prototypes for local functions */
static int init_hidden_window (void);
@@ -855,7 +855,7 @@ static void
do_gdb (cmd, str, func, count)
char *cmd;
char *str;
void (*func) PARAMS ((char *, int));
void (*func) (char *, int);
int count;
{
ReplyMessage ((LRESULT) 1);