shithub: brokentoys

ref: 77d016decc6c4f92e4c32ff5777a57fc1d7a7e1f
dir: /extorlocal.c/

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

static char s[] = "hello ";
char t[] = "world\n";

void
greet(void)
{
	write(1, s, 6);
	write(1, t, 6);
}

void
main()
{
	greet();
	//exits(0);
}