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

@ -58,9 +58,9 @@
extern int info_verbose;
extern void (*readline_begin_hook) PARAMS ((char *,...));
extern char *(*readline_hook) PARAMS ((char *));
extern void (*readline_end_hook) PARAMS ((void));
extern void (*readline_begin_hook) (char *, ...);
extern char *(*readline_hook) (char *);
extern void (*readline_end_hook) (void);
extern void x_command (char *, int);
extern int addressprint; /* Print machine addresses? */