Skip to content

Commit

Permalink
Fix #99, Apply header guard standard
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Feb 5, 2022
1 parent 51810c0 commit af6d61c
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 af6d61c

Please sign in to comment.