authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-01 03:53:27+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-01 03:53:27+02:00
log496a067d3f7c2d48c68ff0adae389994e68b70ba
tree49a85767f49a558096c138ed845872203eda2625
parent3b465ebec59ee942b6c490ada2f81902ec047d7f
signature Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.elf: Define ET.(LOOS,HIOS) constants.


1 files changed, 7 insertions(+), 1 deletions(-)

lib/std/elf.zig+7-1
......@@ -453,10 +453,16 @@ pub const ET = enum(u16) {
453453 /// Core file
454454 CORE = 4,
455455
456 /// Beginning of OS-specific codes
457 pub const LOOS = 0xfe00;
458
459 /// End of OS-specific codes
460 pub const HIOS = 0xfeff;
461
456462 /// Beginning of processor-specific codes
457463 pub const LOPROC = 0xff00;
458464
459 /// Processor-specific
465 /// End of processor-specific codes
460466 pub const HIPROC = 0xffff;
461467};
462468