diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-18 22:34:23 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-09-18 22:34:23 +0000 |
commit | ce6bb0f3c801a838dfcd75861b778258ac56f814 (patch) | |
tree | 51ef7cf67814b3a880c9055544cea24abae3beb5 /gcc/incpath.h | |
parent | f63ac7042912e6368d442fe69ae1d71085ca78e2 (diff) | |
download | gcc-ce6bb0f3c801a838dfcd75861b778258ac56f814.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@215365 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/incpath.h')
-rw-r--r-- | gcc/incpath.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/incpath.h b/gcc/incpath.h index e86130fbc56..0826d26140f 100644 --- a/gcc/incpath.h +++ b/gcc/incpath.h @@ -15,6 +15,9 @@ along with this program; see the file COPYING3. If not see <http://www.gnu.org/licenses/>. */ +#ifndef GCC_INCPATH_H +#define GCC_INCPATH_H + extern void split_quote_chain (void); extern void add_path (char *, int, int, bool); extern void register_include_chains (cpp_reader *, const char *, @@ -32,3 +35,5 @@ struct target_c_incpath_s { extern struct target_c_incpath_s target_c_incpath; enum { QUOTE = 0, BRACKET, SYSTEM, AFTER }; + +#endif /* GCC_INCPATH_H */ |