shithub: brokentoys

ref: e95e3c07981eab6b39a04df5446c998194acb6a2
dir: /test.c/

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

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

void
main()
{
	greet();
}