diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-06-27 06:45:43 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-06-27 06:45:43 +0000 |
commit | 1b2a2f903fe7e0cff254b026bf11c4a7e99b171d (patch) | |
tree | 50fe95a1e86dfe0d62ee2ae009abb9bc1f1bde13 /gdb/copying.awk | |
parent | 65aa24b6e8082b40bb8de63732b35908cbfd088a (diff) | |
download | gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.zip gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.tar.gz gdb-1b2a2f903fe7e0cff254b026bf11c4a7e99b171d.tar.bz2 |
Params elimination.
Diffstat (limited to 'gdb/copying.awk')
-rw-r--r-- | gdb/copying.awk | 6 |
1 files changed, 3 insertions, 3 deletions
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"; |