* java-tree.h: Protect against multiple inclusion.
authorNathanael Nerode <neroden@gcc.gnu.org>
Wed, 8 Jan 2003 13:28:18 +0000 (13:28 +0000)
committerNathanael Nerode <neroden@gcc.gnu.org>
Wed, 8 Jan 2003 13:28:18 +0000 (13:28 +0000)
From-SVN: r61043

gcc/java/ChangeLog
gcc/java/java-tree.h

index e8150af22172431110bd7581bcffff25147b0a08..c2b841b097955882c5dd84c1613db56b30f91582 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
+
+       * java-tree.h: Protect against multiple inclusion.
+
 2003-01-07  Tom Tromey  <tromey@redhat.com>
 
        * class.c (add_assume_compiled): Don't adjust parent if we're
index a2f301dca88dc708345d23b58eae253aa9aadbd1..1a85979c61a78b76a91cf132f825ff8078706ba7 100644 (file)
@@ -26,6 +26,9 @@ The Free Software Foundation is independent of Sun Microsystems, Inc.  */
 
 /* Hacked by Per Bothner <bothner@cygnus.com> February 1996. */
 
+#ifndef GCC_JAVA_TREE_H
+#define GCC_JAVA_TREE_H
+
 #include "hashtab.h"
 
 /* Java language-specific tree codes.  */
@@ -1753,3 +1756,4 @@ enum
 };
 
 #undef DEBUG_JAVA_BINDING_LEVELS
+#endif /* ! GCC_JAVA_TREE_H */