Params elimination.

This commit is contained in:
Kevin Buettner 2000-06-27 06:45:43 +00:00
parent 65aa24b6e8
commit 1b2a2f903f
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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";