From f1717f8df9419f72f384448de851f0cd8a64c46e Mon Sep 17 00:00:00 2001 From: Kito Cheng Date: Thu, 18 Sep 2014 22:34:23 +0000 Subject: Add header guard to several header files. 2014-09-19 Kito Cheng * 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. From-SVN: r215365 --- gcc/collect-utils.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/collect-utils.h') diff --git a/gcc/collect-utils.h b/gcc/collect-utils.h index 2989c6b..ba1985e 100644 --- a/gcc/collect-utils.h +++ b/gcc/collect-utils.h @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see . */ +#ifndef GCC_COLLECT_UTILS_H +#define GCC_COLLECT_UTILS_H + /* Provided in collect-utils.c. */ extern void notice (const char *, ...) __attribute__ ((format (printf, 1, 2))); @@ -42,3 +45,5 @@ extern const char tool_name[]; /* Called by utils_cleanup. */ extern void tool_cleanup (bool); extern void maybe_unlink (const char *); + +#endif /* GCC_COLLECT_UTILS_H */ -- cgit v1.1