blob: e281fc8c0deec4c21c40002324b148c44c1c26cb (
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("shouldn't be here\n");
/* just die or something */
}
|