From 69952c1d4d5d483e32f07236281262cf18321e00 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer <aldot@gcc.gnu.org> Date: Sun, 7 Jun 2009 21:53:14 +0200 Subject: [PATCH] gbl-ctors.h: Add header guard. 2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> * gbl-ctors.h: Add header guard. From-SVN: r148262 --- gcc/ChangeLog | 4 ++++ gcc/gbl-ctors.h | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9889424ca43a..8c866e776bb5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> + + * gbl-ctors.h: Add header guard. + 2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> * tree-flow.h (make_value_handle, set_value_handle, sort_vuses, diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h index 67d574052269..ac4faae12928 100644 --- a/gcc/gbl-ctors.h +++ b/gcc/gbl-ctors.h @@ -35,6 +35,9 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see Note that this file should only be compiled with GCC. */ +#ifndef GCC_GBL_CTORS_H +#define GCC_GBL_CTORS_H + /* Declare a pointer to void function type. */ typedef void (*func_ptr) (void); @@ -81,3 +84,4 @@ do { \ } while (0) #endif +#endif /* GCC_GBL_CTORS_H */ -- GitLab