diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-10-08 15:09:20 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-10-08 15:09:20 -0600 |
commit | 990c642c8991cf262218e98d7fedf47b1127db05 (patch) | |
tree | e1be7e69b9f0b36cfc64fe2d9529b21cca2a4c00 /gcc/cpplib.h | |
parent | 5a41b4763507981d960b30ee9604d96430a543ad (diff) | |
download | gcc-990c642c8991cf262218e98d7fedf47b1127db05.zip gcc-990c642c8991cf262218e98d7fedf47b1127db05.tar.gz gcc-990c642c8991cf262218e98d7fedf47b1127db05.tar.bz2 |
emit-rtl.c (init_emit_once): Call INIT_EXPANDERS.
* emit-rtl.c (init_emit_once): Call INIT_EXPANDERS.
* cpplib.h: Protect from multiple inclusions.
* cpplib.c: Fix minor formatting problems.
From-SVN: r22937
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index ad69646..12b111b 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -19,6 +19,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ +#ifndef __GCC_CPPLIB__ +#define __GCC_CPPLIB__ #include <sys/types.h> #include <sys/stat.h> @@ -686,3 +688,5 @@ extern void cpp_print_containing_files PROTO ((cpp_reader *)); #ifdef __cplusplus } #endif +#endif /* __GCC_CPPLIB__ */ + |