Add `set print array-indexes' tests for C/C++ arrays
[binutils-gdb.git] / gdb / copying.awk
index 1801997db15f9bfd811cb985e86db05b76db0121..702a6b4338ab6cdfcdceb713189b4f32641cc375 100644 (file)
@@ -10,14 +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 ""
-         print "void _initialize_copying (void);"
+         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\.[        ]*$/    {
@@ -37,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[  ]*$/{  
@@ -52,8 +50,9 @@ NR == 1,/^[   ]*15\. Disclaimer of Warranty\.[        ]*$/    {
 END    {
          print "}";
          print "";
+         print "void _initialize_copying ();"
          print "void"
-         print "_initialize_copying (void)";
+         print "_initialize_copying ()";
          print "{";
          print "  add_cmd (\"copying\", no_set_class, show_copying_command,";
          print "          _(\"Conditions for redistributing copies of GDB.\"),";