aboutsummaryrefslogtreecommitdiff
path: root/tests/hello-world/init.c
blob: fc882ecfa0de827a721a6b8416a136b0b9780454 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <common/test.h>

START(pid, tid, d0, d1, d2, d3)
{
	UNUSED(pid);
	UNUSED(tid);
	UNUSED(d0);
	UNUSED(d1);
	UNUSED(d2);
	UNUSED(d3);

	printf("Hello, world!\n");
	ok();
}