mclangc/include/linux/io.mcl
2024-03-14 09:13:01 +02:00

14 lines
217 B
Plaintext

fn fwrite with int ptr int returns int then
SYS_write syscall3
done
fn puts with int ptr int returns int then
STDOUT fwrite drop
done
fn eputs with int ptr int returns int then
STDERR fwrite drop
done