diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2004-01-08 07:50:46 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-01-08 07:50:46 +0000 |
commit | 7ce2710348f261e5e367189c00bd708f45952710 (patch) | |
tree | e0517960c65eaaeff8087f0e25e3b82b95e80f87 /gcc/dwarf2.h | |
parent | 417b11de06fd86a2c9efd6ab5572c498baf65b58 (diff) | |
download | gcc-7ce2710348f261e5e367189c00bd708f45952710.zip gcc-7ce2710348f261e5e367189c00bd708f45952710.tar.gz gcc-7ce2710348f261e5e367189c00bd708f45952710.tar.bz2 |
dwarf2.h, [...]: Add multiple-include guard.
* dwarf2.h, unwind-dw2-fde.h, unwind-pe.h, unwind.h:
Add multiple-include guard.
cp:
* parser.c (cp_parser_save_member_function_body): Mark the
definition static.
treelang:
* parse.y (yyerror): Mark the definition static.
From-SVN: r75536
Diffstat (limited to 'gcc/dwarf2.h')
-rw-r--r-- | gcc/dwarf2.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/dwarf2.h b/gcc/dwarf2.h index 2345d3a..0e98a45 100644 --- a/gcc/dwarf2.h +++ b/gcc/dwarf2.h @@ -38,6 +38,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* This file is shared between GCC and GDB, and should not contain prototypes. */ +#ifndef GCC_DWARF2_H +#define GCC_DWARF2_H + /* Tag names and codes. */ enum dwarf_tag { @@ -628,3 +631,5 @@ enum dwarf_macinfo_record_type #define DW_EH_PE_aligned 0x50 #define DW_EH_PE_indirect 0x80 + +#endif /* dwarf2.h */ |