diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-05-02 04:28:42 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-05-02 04:28:42 +0000 |
commit | e1ce8aa5ed46310d716472d19d2e87da2833d599 (patch) | |
tree | cacaf1a83d8e388b049c2b3bc454f311dd34b6e2 /gdb/main.c | |
parent | 04a0511c0af3d07f7b4587fbf4715d2b956f1fad (diff) | |
download | gdb-e1ce8aa5ed46310d716472d19d2e87da2833d599.zip gdb-e1ce8aa5ed46310d716472d19d2e87da2833d599.tar.gz gdb-e1ce8aa5ed46310d716472d19d2e87da2833d599.tar.bz2 |
The list of changes is too long to fit in the cvs log (since it truncates!).
Look at the ChangeLog for Apr 30 and May 1.
Diffstat (limited to 'gdb/main.c')
-rw-r--r-- | gdb/main.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1455,6 +1455,7 @@ error_no_arg (why) error ("Argument required (%s).", why); } +/* ARGSUSED */ static void help_command (command, from_tty) char *command; @@ -1584,6 +1585,7 @@ GDB is free software and you are welcome to distribute copies of it\n\ under certain conditions; type \"info copying\" to see the conditions.\n"); } +/* ARGSUSED */ static void show_version (args, from_tty) char *args; @@ -1629,6 +1631,7 @@ input_from_terminal_p () return (instream == stdin) & caution; } +/* ARGSUSED */ static void pwd_command (args, from_tty) char *args; @@ -1710,6 +1713,7 @@ cd_command (dir, from_tty) pwd_command ((char *) 0, 1); } +/* ARGSUSED */ static void source_command (args, from_tty) char *args; @@ -1885,6 +1889,7 @@ show_commands (args, from_tty) } /* Called by do_setshow_command. */ +/* ARGSUSED */ static void set_history_size_command (args, from_tty, c) char *args; @@ -1897,6 +1902,7 @@ set_history_size_command (args, from_tty, c) stifle_history (history_size); } +/* ARGSUSED */ static void set_history (args, from_tty) char *args; @@ -1906,6 +1912,7 @@ set_history (args, from_tty) help_list (sethistlist, "set history ", -1, stdout); } +/* ARGSUSED */ static void show_history (args, from_tty) char *args; @@ -1917,6 +1924,7 @@ show_history (args, from_tty) int info_verbose = 0; /* Default verbose msgs off */ /* Called by do_setshow_command. An elaborate joke. */ +/* ARGSUSED */ static void set_verbose (args, from_tty, c) char *args; |