diff options
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/copying.awk | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 30cf1fccb9e..54e5cc731a4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2000-06-26 Kevin Buettner <kevinb@redhat.com> + + * copying.awk: Eliminate use of PARAMS from this file. + Fri Jun 23 20:47:03 2000 Andrew Cagney <cagney@b1.cygnus.com> * mips-tdep.c (mips_push_arguments): Use the variable stack_used_p diff --git a/gdb/copying.awk b/gdb/copying.awk index 4f53e92e88e..53f7a6f518d 100644 --- a/gdb/copying.awk +++ b/gdb/copying.awk @@ -7,11 +7,11 @@ BEGIN { print "#include \"command.h\"" print "#include \"gdbcmd.h\"" print "" - print "static void show_copying_command PARAMS ((char *, int));" + print "static void show_copying_command (char *, int);" print "" - print "static void show_warranty_command PARAMS ((char *, int));" + print "static void show_warranty_command (char *, int);" print "" - print "void _initialize_copying PARAMS ((void));" + print "void _initialize_copying (void);" print "" print "extern int immediate_quit;"; print "static void"; |