summaryrefslogtreecommitdiff
path: root/test.c
blob: 70040c1a2d6ff46b763d58b3a8c4427624380f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <u.h>
#include <libc.h>

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

void
main()
{
	greet();
}