hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit ccf63b910cd2d69944c7a40dc0e7b9ff39bba89a
parent a6018f1d4b0e0bde3f682df6de47e7351eaf647b
Author: Ember Sawady <ecs@d2evs.net>
Date:   Sun, 21 May 2023 08:11:23 +0000

linux/*: fix fully-qualified identifiers

Signed-off-by: Ember Sawady <ecs@d2evs.net>

Diffstat:
Mlinux/env.ha | 2+-
Mlinux/vdso/vdso.ha | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/linux/env.ha b/linux/env.ha @@ -3,4 +3,4 @@ use format::elf; // System V auxillary vector for the current process -export let auxv: *[*]format::elf::auxv64 = null: *[*]format::elf::auxv64; +export let auxv: *[*]elf::auxv64 = null: *[*]elf::auxv64; diff --git a/linux/vdso/vdso.ha b/linux/vdso/vdso.ha @@ -63,7 +63,7 @@ fn get_vdso_ctx() nullable *vdso_ctx = { ph.p_vaddr: uintptr): nullable *void; case elf::pt::DYNAMIC => dynvec = (ehui + - ph.p_offset: uintptr): *[*]format::elf::dyn64; + ph.p_offset: uintptr): *[*]elf::dyn64; case => void; }; phui += eh.e_phentsize: uintptr;