Eliminate PARAMS from function pointer declarations.
This commit is contained in:
parent
450005e7c2
commit
507f3c78fb
53 changed files with 238 additions and 233 deletions
|
@ -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? */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue