aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <aldot@gcc.gnu.org>2009-06-07 21:53:14 +0200
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>2009-06-07 21:53:14 +0200
commit69952c1d4d5d483e32f07236281262cf18321e00 (patch)
tree209d0e1cffe6cfea34b3084e627113f3d8dd2cf7 /gcc
parentb2ad028425653a0ac98a3e50999609c48e91288a (diff)
downloadgcc-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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/gbl-ctors.h4
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 */