aboutsummaryrefslogtreecommitdiff
path: root/gdb/cli/cli-cmds.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-03-19 23:31:41 +0000
committerAndrew Cagney <cagney@redhat.com>2001-03-19 23:31:41 +0000
commitcf4eee44fd7bcbd17b1c1e7c28216b3379d797a7 (patch)
treef74f300946f836841b4b2833fa4369eb271fee65 /gdb/cli/cli-cmds.c
parent1c5b31ef69484c56d8661dc98143aa102a4fc64a (diff)
downloadfsf-binutils-gdb-cf4eee44fd7bcbd17b1c1e7c28216b3379d797a7.zip
fsf-binutils-gdb-cf4eee44fd7bcbd17b1c1e7c28216b3379d797a7.tar.gz
fsf-binutils-gdb-cf4eee44fd7bcbd17b1c1e7c28216b3379d797a7.tar.bz2
Zap __STDC__ references.
Diffstat (limited to 'gdb/cli/cli-cmds.c')
-rw-r--r--gdb/cli/cli-cmds.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/gdb/cli/cli-cmds.c b/gdb/cli/cli-cmds.c
index 19b5970..41001e9 100644
--- a/gdb/cli/cli-cmds.c
+++ b/gdb/cli/cli-cmds.c
@@ -664,18 +664,10 @@ End with a line of just \"end\".\n\
Use the \"document\" command to give documentation for the new command.\n\
Commands defined in this way may have up to ten arguments.");
-#ifdef __STDC__
c = add_cmd ("source", class_support, source_command,
"Read commands from a file named FILE.\n\
Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
when gdb is started.", &cmdlist);
-#else
- /* Punt file name, we can't help it easily. */
- c = add_cmd ("source", class_support, source_command,
- "Read commands from a file named FILE.\n\
-Note that the file \".gdbinit\" is read automatically in this way\n\
-when gdb is started.", &cmdlist);
-#endif
c->completer = filename_completer;
add_com ("quit", class_support, quit_command, "Exit gdb.");