diff options
author | Richard Henderson <rth@gcc.gnu.org> | 2001-05-25 18:31:47 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-05-25 18:31:47 -0700 |
commit | 88657302b711baa2b317b2bb91c93d0a03e16b36 (patch) | |
tree | a63afad955af14544b1903785b68f16116173e26 /gcc/java/lex.h | |
parent | f811f821d511e7d03dbca9cd645d03bc721b92a2 (diff) | |
download | gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.zip gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.gz gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.bz2 |
Standardize header guards.
From-SVN: r42615
Diffstat (limited to 'gcc/java/lex.h')
-rw-r--r-- | gcc/java/lex.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/java/lex.h b/gcc/java/lex.h index 7934b50..e9c47de 100644 --- a/gcc/java/lex.h +++ b/gcc/java/lex.h @@ -23,8 +23,8 @@ Java and all Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. The Free Software Foundation is independent of Sun Microsystems, Inc. */ -#ifndef JV_LEX_H -#define JV_LEX_H +#ifndef GCC_JAVA_LEX_H +#define GCC_JAVA_LEX_H #include <setjmp.h> /* set_float_handler argument uses it */ @@ -288,4 +288,4 @@ extern void set_float_handler PARAMS ((jmp_buf)); #define JAVA_CHAR_ERROR -2 #define UEOF -1 -#endif +#endif /* ! GCC_JAVA_LEX_H */ |