diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-08 12:24:23 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-06-08 14:24:23 +0200 |
commit | a165c30201ad79e331fd1fe05ce069dd6ef152de (patch) | |
tree | 5125d470dbd9951a7300a2a6e26aaea70053c37c /gcc/ada/misc.c | |
parent | 22e494a0aec5a8385713d5522ea351e43fcea530 (diff) | |
download | gcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.zip gcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.tar.gz gcc-a165c30201ad79e331fd1fe05ce069dd6ef152de.tar.bz2 |
Make-lang.in: Update.
2003-06-08 Neil Booth <neil@daikokuya.co.uk>
* Make-lang.in: Update.
* misc.c: Include opts.h. Define cl_options_count and cl_options.
From-SVN: r67623
Diffstat (limited to 'gcc/ada/misc.c')
-rw-r--r-- | gcc/ada/misc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/ada/misc.c b/gcc/ada/misc.c index 180bb9a..6937f8b 100644 --- a/gcc/ada/misc.c +++ b/gcc/ada/misc.c @@ -74,10 +74,13 @@ #include "ada-tree.h" #include "gigi.h" #include "adadecode.h" +#include "opts.h" extern FILE *asm_out_file; extern int save_argc; extern char **save_argv; +const unsigned int cl_options_count; +const struct cl_option cl_options[1]; static size_t gnat_tree_size PARAMS ((enum tree_code)); static bool gnat_init PARAMS ((void)); |