summaryrefslogtreecommitdiff
path: root/extorlocal.c
blob: e27f1ae9038e6a039953157db7b3c05c0f2ae206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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);
}