diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-15 22:19:36 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-15 22:19:36 -0400 |
commit | 6e5695a5b8f14bb82b8eede562925e9747d646c1 (patch) | |
tree | 6f203b89919bb35e6cae181e0d14854f0c0aa63a /lib/libc/include | |
parent | df5b897d7a2c023b73717354832d1ea2f8bc10e6 (diff) |
libc: elf: Include correct header
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/libc/include')
-rw-r--r-- | lib/libc/include/elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/include/elf.h b/lib/libc/include/elf.h index af2d65a..4e0c1eb 100644 --- a/lib/libc/include/elf.h +++ b/lib/libc/include/elf.h @@ -30,7 +30,7 @@ #ifndef _SYS_ELF_H_ #define _SYS_ELF_H_ -#include <sys/types.h> +#include <stdint.h> /* Type for a 16-bit quantity. */ typedef uint16_t Elf32_Half; |