diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:53:14 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:53:14 +0200 |
commit | 69952c1d4d5d483e32f07236281262cf18321e00 (patch) | |
tree | 209d0e1cffe6cfea34b3084e627113f3d8dd2cf7 | |
parent | b2ad028425653a0ac98a3e50999609c48e91288a (diff) | |
download | gcc-69952c1d4d5d483e32f07236281262cf18321e00.zip gcc-69952c1d4d5d483e32f07236281262cf18321e00.tar.gz gcc-69952c1d4d5d483e32f07236281262cf18321e00.tar.bz2 |
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
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gbl-ctors.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9889424..8c866e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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, sort_vuses_heap, vn_lookup_or_add, vn_lookup_or_add_with_stmt, vn_lookup_or_add_with_vuses, vn_add, vn_add_with_vuses, diff --git a/gcc/gbl-ctors.h b/gcc/gbl-ctors.h index 67d5740..ac4faae 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 */ |