mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:45:56 +08:00
Eliminate PARAMS from function pointer declarations.
This commit is contained in:
@ -103,9 +103,9 @@ fork_inferior (exec_file, allargs, env, traceme_fun, init_trace_fun,
|
||||
char *exec_file;
|
||||
char *allargs;
|
||||
char **env;
|
||||
void (*traceme_fun) PARAMS ((void));
|
||||
void (*init_trace_fun) PARAMS ((int));
|
||||
void (*pre_trace_fun) PARAMS ((void));
|
||||
void (*traceme_fun) (void);
|
||||
void (*init_trace_fun) (int);
|
||||
void (*pre_trace_fun) (void);
|
||||
char *shell_file;
|
||||
{
|
||||
int pid;
|
||||
|
Reference in New Issue
Block a user