diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-11 05:35:06 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-11 05:35:06 +0000 |
commit | 72528c715b9ec95b5fc0c84c3c2e87aa3573ec63 (patch) | |
tree | 5f4b925b44d99a451ea587be84e79def441779ad /gcc/opts.c | |
parent | 651b0f5913f982c11f28583792a11f8b6444fb9b (diff) | |
download | gcc-72528c715b9ec95b5fc0c84c3c2e87aa3573ec63.tar.gz |
* common.opt: More --help messages.
* opts.c (print_help): Use puts().
* toplev.c (f_options): Remove help text.
(display_help): Don't dump f_options.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69217 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/opts.c b/gcc/opts.c index f9951a6a3cc..64f5ec6cda3 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -1487,7 +1487,7 @@ print_help (void) { size_t i, len; - printf (_("\nThe following options are language-independent:\n")); + puts (_("\nThe following options are language-independent:\n")); for (i = 0; i < cl_options_count; i++) { |