From af6d61c539f8c5acf1bbec34ba7399870ede4845 Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Fri, 4 Feb 2022 17:22:09 -0700 Subject: [PATCH] Fix #99, Apply header guard standard --- ELF_Structures.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ELF_Structures.h b/ELF_Structures.h index a1d05f8..7bf947a 100644 --- a/ELF_Structures.h +++ b/ELF_Structures.h @@ -19,6 +19,9 @@ ** limitations under the License. ** */ +#ifndef ELF_STRUCTURES_H +#define ELF_STRUCTURES_H + #include typedef uint32_t Elf32_Addr; @@ -475,3 +478,5 @@ union Elf_Sym #define STT_LOPROC 13 /**< \brief Values >= are reserved for processor specific semantics */ #define STT_HIPROC 15 /**< \brief Values <= are reserved for processor specific semantics */ + +#endif