shithub: brokentoys

ref: c8ade95ba71fb1b63d975c390114cb7aa6fdc4cc
dir: /test.c/

View raw version
#include <u.h>
#include <libc.h>

void
greet(void)
{
	write(1, "hello world\n", 12);
}

void
main()
{
	greet();
}