scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 614668a41b6c946aefad337904b82091ab16d6b4
parent ec8f82c9f549565ab4efa20b9d85b249a194f099
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  6 Mar 2017 17:05:47 +0100

[crt-amd64-linux] Fix main,exit types

Diffstat:
Mcrt/amd64-linux/crt.as | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crt/amd64-linux/crt.as b/crt/amd64-linux/crt.as @@ -3,6 +3,6 @@ .global _start _start: - call $main + call main movl %eax, %edi - call $exit + call exit