aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-06-27 06:45:43 +0000
committerKevin Buettner <kevinb@redhat.com>2000-06-27 06:45:43 +0000
commit1b2a2f903fe7e0cff254b026bf11c4a7e99b171d (patch)
tree50fe95a1e86dfe0d62ee2ae009abb9bc1f1bde13 /gdb
parent65aa24b6e8082b40bb8de63732b35908cbfd088a (diff)
downloadfsf-binutils-gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.zip
fsf-binutils-gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.tar.gz
fsf-binutils-gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.tar.bz2
Params elimination.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/copying.awk6
2 files changed, 7 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 30cf1fc..54e5cc7 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 4f53e92..53f7a6f 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";