From: Kevin Buettner Date: Tue, 27 Jun 2000 06:45:43 +0000 (+0000) Subject: Params elimination. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=1b2a2f903fe7e0cff254b026bf11c4a7e99b171d;p=deliverable%2Fbinutils-gdb.git Params elimination. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 30cf1fccb9..54e5cc731a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2000-06-26 Kevin Buettner + + * copying.awk: Eliminate use of PARAMS from this file. + Fri Jun 23 20:47:03 2000 Andrew Cagney * mips-tdep.c (mips_push_arguments): Use the variable stack_used_p diff --git a/gdb/copying.awk b/gdb/copying.awk index 4f53e92e88..53f7a6f518 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";