diff options
author | Kito Cheng <kito@0xlab.org> | 2014-09-18 22:34:23 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2014-09-18 23:34:23 +0100 |
commit | f1717f8df9419f72f384448de851f0cd8a64c46e (patch) | |
tree | 51ef7cf67814b3a880c9055544cea24abae3beb5 /gcc/sdbout.h | |
parent | 2fb5f0da9dff6e7f4e394da90c0edcc333402217 (diff) | |
download | gcc-f1717f8df9419f72f384448de851f0cd8a64c46e.zip gcc-f1717f8df9419f72f384448de851f0cd8a64c46e.tar.gz gcc-f1717f8df9419f72f384448de851f0cd8a64c46e.tar.bz2 |
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.
From-SVN: r215365
Diffstat (limited to 'gcc/sdbout.h')
-rw-r--r-- | gcc/sdbout.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/sdbout.h b/gcc/sdbout.h index 00368b6..3d8a886 100644 --- a/gcc/sdbout.h +++ b/gcc/sdbout.h @@ -17,5 +17,10 @@ You should have received a copy of the GNU General Public License along with GCC; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ +#ifndef GCC_SDBOUT_H +#define GCC_SDBOUT_H + extern void sdbout_symbol (tree, int); extern void sdbout_types (tree); + +#endif /* GCC_SDBOUT_H */ |