diff options
author | Ian Moffett <ian@osmora.org> | 2024-05-01 21:48:34 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-05-01 21:48:34 -0400 |
commit | 3baafe30aa682b40a49c38b6b97fc077dd0033a3 (patch) | |
tree | b0f2e754241cbf980b6dbd788006b6f4afb0025d /lib/libc | |
parent | 217db7b1bbddac4e5aa1a5817751a8c272d82548 (diff) |
libc: elf: Fix header guard
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/include/elf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/include/elf.h b/lib/libc/include/elf.h index 4e0c1eb..f3061cf 100644 --- a/lib/libc/include/elf.h +++ b/lib/libc/include/elf.h @@ -27,8 +27,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef _SYS_ELF_H_ -#define _SYS_ELF_H_ +#ifndef _ELF_H +#define _ELF_H #include <stdint.h> @@ -496,4 +496,4 @@ typedef struct { Elf64_Xword sh_entsize; /* Entry size if section holds table */ } Elf64_Shdr; -#endif /* _SYS_ELF_H_ */ +#endif /* _ELF_H */ |