diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-12 12:48:29 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-08-12 13:01:19 +0200 |
commit | 811c81eef4f168cdbc960c381711a4bff69305f0 (patch) | |
tree | cc3496c0acb40651699c0f06cb6a7da687d1d134 /i386/include/mach | |
parent | f768b6524fa5e5872ca7b4002d346aae1d6bcaf6 (diff) | |
download | gnumach-811c81eef4f168cdbc960c381711a4bff69305f0.tar.gz gnumach-811c81eef4f168cdbc960c381711a4bff69305f0.tar.bz2 gnumach-811c81eef4f168cdbc960c381711a4bff69305f0.zip |
elf64: Update names
Apparently the ELF world changed their mind on the naming of integers,
let's get coherent with it.
Elf64_Quarter (16b) disappeared, replaced by Elf64_Half (now 16b instead of
Elf64_32b). And previous Elf64_Half (16b) thus now need to be Elf64_Word
(16b).
Diffstat (limited to 'i386/include/mach')
-rw-r--r-- | i386/include/mach/i386/exec/elf.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/i386/include/mach/i386/exec/elf.h b/i386/include/mach/i386/exec/elf.h index 582f8767..60b16575 100644 --- a/i386/include/mach/i386/exec/elf.h +++ b/i386/include/mach/i386/exec/elf.h @@ -36,8 +36,7 @@ typedef int32_t Elf64_Sword; typedef uint32_t Elf64_Word; typedef int64_t Elf64_Sxword; typedef uint64_t Elf64_Xword; -typedef uint32_t Elf64_Half; -typedef uint16_t Elf64_Quarter; +typedef uint16_t Elf64_Half; /* Architecture identification parameters for x86. */ |