hare

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

commit c1e2be1961d9c7cc2a0d0825397c1dd5fb277194
parent d7207ba62f4f9f8bacbb24f7cf51305cb182502f
Author: Drew DeVault <sir@cmpwn.com>
Date:   Thu, 17 Mar 2022 14:23:37 +0100

rt+linux+libc: fix argv type

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mrt/+linux/platformstart+libc.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rt/+linux/platformstart+libc.ha b/rt/+linux/platformstart+libc.ha @@ -14,7 +14,7 @@ export fn start_linux() void = { }; argc = i; - argv = (argv_ptr + size(*char): uintptr): **char; + argv = (argv_ptr + size(*char): uintptr): *[*]*char; envp = c_environ; };