diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-08 07:54:10 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-08 07:54:10 +0000 |
commit | 35399bdca9aeeaf8c7b0709c7767c79504944fa7 (patch) | |
tree | f974599ae367c3af58eeec4d6ed163ceb9b16557 /gcc/c-opts.c | |
parent | 8eb6a092cabdf4dbf91224ed32b63935a30766dd (diff) | |
download | gcc-35399bdca9aeeaf8c7b0709c7767c79504944fa7.zip gcc-35399bdca9aeeaf8c7b0709c7767c79504944fa7.tar.gz gcc-35399bdca9aeeaf8c7b0709c7767c79504944fa7.tar.bz2 |
Makefile.in: Rename options.c and options.h to c-options.c and c-options.h.
* Makefile.in: Rename options.c and options.h to c-options.c and
c-options.h.
(OBJS): Remove options.o.
* c-opts.c: Don'tInclude c-options.h instead of options.h.
* opts.c: Don't include options.h.
(find_opt): Can't use enum opt_code or N_OPTS.
* opts.h (struct cl_option, cl_options, cl_options_count): Move from...
* opts.sh: ... here.
From-SVN: r67615
Diffstat (limited to 'gcc/c-opts.c')
-rw-r--r-- | gcc/c-opts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-opts.c b/gcc/c-opts.c index 75078b5..43057ab 100644 --- a/gcc/c-opts.c +++ b/gcc/c-opts.c @@ -36,7 +36,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "c-incpath.h" #include "debug.h" /* For debug_hooks. */ #include "opts.h" -#include "options.h" +#include "c-options.h" #ifndef DOLLARS_IN_IDENTIFIERS # define DOLLARS_IN_IDENTIFIERS true |