os

An operating system
git clone https://erai.gay/code/os/
Log | Files | Refs | README | LICENSE

commit 32ef4c614aeb105c91f2a623522d9b16f6d230bb
parent f16ffecacbc703fb085a91c959a596d92ab106b6
Author: erai <erai@omiltem.net>
Date:   Sat, 16 Mar 2024 11:39:43 -0400

Start at col 1

Diffstat:
Mcc1.c | 2+-
Mcc2 | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1.c b/cc1.c @@ -431,7 +431,7 @@ comp_setup(c: *compiler): void { c.nc = getchar(); c.lineno = 1; - c.colno = 0; + c.colno = 1; c.tlen = 0; c.tmax = 4096; c.token = alloc(c, c.tmax); diff --git a/cc2 b/cc2 Binary files differ.