harec

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a2ca744f88807e7f895ca42261a8f57e50261dff
parent d2e738baea58646fd7afbac66bd85505eccab47e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 12 Jan 2021 21:29:32 -0500

rt: main returns void

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

diff --git a/rt/rtmain.ha b/rt/rtmain.ha @@ -1,4 +1,4 @@ -@symbol("main") fn main() int; +@symbol("main") fn main() void; const @symbol("__init_array_start") init_start: [*]*fn() void; const @symbol("__init_array_end") init_end: [*]*fn() void;