hare

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

commit c5515bf92d4f41a69455ce23613b013441a89ed6
parent 5157b4439e9f5cd7b5f5b1c258ea762d826eb139
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 12 May 2023 20:37:21 -0400

rt+libc: fix typo

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

diff --git a/rt/start+libc.ha b/rt/start+libc.ha @@ -18,7 +18,7 @@ export fn fini() void = { }; }; -export @symbol("main" )@noreturn fn start_ha() void = { +export @symbol("main") @noreturn fn start_ha() void = { // libc runs @init and @fini for us (unless rt::exit() is called) main(); c_exit(0);