shithub: battleship

ref: 97f4b9b97c470501d25ac82cad771bdff75e9b59
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);
}