diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-04-05 13:09:45 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-04-05 13:09:45 +0000 |
commit | 4f65832d5c08d16601c8271909c5e1f9deca23ed (patch) | |
tree | b9b66e4fab448bc92781caec3bf1299deb89910a /gcc/java/java-tree.h | |
parent | 4504ead1db50e758e107f9b3a42975afbe1e8106 (diff) | |
download | gcc-4f65832d5c08d16601c8271909c5e1f9deca23ed.zip gcc-4f65832d5c08d16601c8271909c5e1f9deca23ed.tar.gz gcc-4f65832d5c08d16601c8271909c5e1f9deca23ed.tar.bz2 |
Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H).
* Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H).
* gjavah.c: Include math.h earlier. Include tree.h/java-tree.h.
(main_jcf): Don't define.
(process_file): Don't set `main_jcf'.
* java-tree.h (main_jcf): Don't declare.
* jcf-parse.c (main_jcf): Add static definition.
* lang.c (main_jcf): Don't define.
From-SVN: r26204
Diffstat (limited to 'gcc/java/java-tree.h')
-rw-r--r-- | gcc/java/java-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/java-tree.h b/gcc/java/java-tree.h index 2925c04..9a1e964 100644 --- a/gcc/java/java-tree.h +++ b/gcc/java/java-tree.h @@ -139,7 +139,7 @@ extern int flag_not_overriding; extern int flag_static_local_jdk1_1; /* The Java .class file that provides main_class; the main input file. */ -extern struct JCF main_jcf[1], *current_jcf; +extern struct JCF *current_jcf; typedef struct CPool constant_pool; |