summaryrefslogtreecommitdiff
path: root/gcc/gsyms.h
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-18 22:34:23 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2014-09-18 22:34:23 +0000
commitce6bb0f3c801a838dfcd75861b778258ac56f814 (patch)
tree51ef7cf67814b3a880c9055544cea24abae3beb5 /gcc/gsyms.h
parentf63ac7042912e6368d442fe69ae1d71085ca78e2 (diff)
downloadgcc-ce6bb0f3c801a838dfcd75861b778258ac56f814.tar.gz
Add header guard to several header files.
2014-09-19 Kito Cheng <kito@0xlab.org> * except.h: Fix header guard. * addresses.h: Add missing header guard. * cfghooks.h: Likewise. * collect-utils.h: Likewise. * collect2-aix.h: Likewise. * conditions.h: Likewise. * cselib.h: Likewise. * dwarf2asm.h: Likewise. * graphds.h: Likewise. * graphite-scop-detection.h: Likewise. * gsyms.h: Likewise. * hw-doloop.h: Likewise. * incpath.h: Likewise. * ipa-inline.h: Likewise. * ipa-ref.h: Likewise. * ira-int.h: Likewise. * ira.h: Likewise. * lra-int.h: Likewise. * lra.h: Likewise. * lto-section-names.h: Likewise. * read-md.h: Likewise. * reload.h: Likewise. * rtl-error.h: Likewise. * sdbout.h: Likewise. * targhooks.h: Likewise. * tree-affine.h: Likewise. * xcoff.h: Likewise. * xcoffout.h: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215365 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gsyms.h')
-rw-r--r--gcc/gsyms.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/gsyms.h b/gcc/gsyms.h
index 3547692e166..3aeb1da3dfa 100644
--- a/gcc/gsyms.h
+++ b/gcc/gsyms.h
@@ -18,6 +18,8 @@ along with GCC; see the file COPYING3. If not see
/* For cross compilation, use the portable definitions from the COFF
documentation. */
+#ifndef GCC_GSYMS_H
+#define GCC_GSYMS_H
#define __GNU_SYMS__
@@ -102,3 +104,5 @@ enum sdb_masks
#endif
N_TSHIFT = 2
};
+
+#endif /* GCC_GSYMS_H */