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

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