From 3baafe30aa682b40a49c38b6b97fc077dd0033a3 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 1 May 2024 21:48:34 -0400 Subject: libc: elf: Fix header guard Signed-off-by: Ian Moffett --- lib/libc/include/elf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/libc/include/elf.h') 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 @@ -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 */ -- cgit v1.2.3