diff options
Diffstat (limited to 'gdb/copying.awk')
-rw-r--r-- | gdb/copying.awk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/copying.awk b/gdb/copying.awk index 2a71939..1cd596a 100644 --- a/gdb/copying.awk +++ b/gdb/copying.awk @@ -10,12 +10,12 @@ BEGIN { print "#include \"command.h\"" print "#include \"gdbcmd.h\"" print "" - print "static void show_copying_command (char *, int);" + print "static void show_copying_command (const char *, int);" print "" - print "static void show_warranty_command (char *, int);" + print "static void show_warranty_command (const char *, int);" print "" print "static void"; - print "show_copying_command (char *ignore, int from_tty)"; + print "show_copying_command (const char *ignore, int from_tty)"; print "{"; } NR == 1,/^[ ]*15\. Disclaimer of Warranty\.[ ]*$/ { @@ -35,7 +35,7 @@ NR == 1,/^[ ]*15\. Disclaimer of Warranty\.[ ]*$/ { print "}"; print ""; print "static void"; - print "show_warranty_command (char *ignore, int from_tty)"; + print "show_warranty_command (const char *ignore, int from_tty)"; print "{"; } /^[ ]*15\. Disclaimer of Warranty\.[ ]*$/, /^[ ]*END OF TERMS AND CONDITIONS[ ]*$/{ |