diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-10 01:32:12 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-10 01:32:12 +0000 |
commit | dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29 (patch) | |
tree | f9b5959bae0444386a18fb18f492221b0b8e3aad /gdb/command.h | |
parent | 4acafb8638134c5e22a6149cc9f5f019b23968f2 (diff) | |
download | gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.zip gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.tar.gz gdb-dee8b1a1c52bb43245e6b0ac2958ea6de4f6ba29.tar.bz2 |
Eliminate PARAMS.
Diffstat (limited to 'gdb/command.h')
-rw-r--r-- | gdb/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/command.h b/gdb/command.h index 7f5a6b2..469df9f 100644 --- a/gdb/command.h +++ b/gdb/command.h @@ -115,7 +115,7 @@ struct cmd_list_element void (*sfunc) (char *args, int from_tty, struct cmd_list_element * c); } function; -#define NO_FUNCTION ((void (*) PARAMS((char *args, int from_tty))) 0) +#define NO_FUNCTION ((void (*) (char *args, int from_tty)) 0) /* Documentation of this command (or help topic). First line is brief documentation; remaining lines form, with it, |