Skip to content

Commit

Permalink
Merge pull request #100 from skliper/fix99-header_guard
Browse files Browse the repository at this point in the history
Fix #99, Apply header guard standard
  • Loading branch information
astrogeco committed Feb 24, 2022
2 parents 51810c0 + af6d61c commit 9f123b4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ELF_Structures.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
** limitations under the License.
**
*/
#ifndef ELF_STRUCTURES_H
#define ELF_STRUCTURES_H

#include <stdint.h>

typedef uint32_t Elf32_Addr;
Expand Down Expand Up @@ -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

0 comments on commit 9f123b4

Please sign in to comment.