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/hwint.h | |
parent | f811f821d511e7d03dbca9cd645d03bc721b92a2 (diff) | |
download | gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.gz |
Standardize header guards.
From-SVN: r42615
Diffstat (limited to 'gcc/hwint.h')
-rw-r--r-- | gcc/hwint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/hwint.h b/gcc/hwint.h index 9551dc5ccd9..b624caf944c 100644 --- a/gcc/hwint.h +++ b/gcc/hwint.h @@ -6,8 +6,8 @@ Provide definitions for macros which depend on HOST_BITS_PER_INT and HOST_BITS_PER_LONG. */ -#ifndef __HWINT_H__ -#define __HWINT_H__ +#ifndef GCC_HWINT_H +#define GCC_HWINT_H /* This describes the machine the compiler is hosted on. */ #define HOST_BITS_PER_CHAR CHAR_BIT @@ -146,4 +146,4 @@ # endif /* long long wider than long */ #endif /* ! HOST_WIDEST_INT */ -#endif /* __HWINT_H__ */ +#endif /* ! GCC_HWINT_H */ |