xref: /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/cris/c/sched6.c (revision 4439cfd0acf9c7dc90625e5cd83b2317a9ab8967)
1 /*
2 #progos: linux
3 */
4 
5 #include <sched.h>
6 #include <stdio.h>
7 #include <stdlib.h>
8 
9 int main (void)
10 {
11   if (sched_yield () != 0)
12     abort ();
13   printf ("pass\n");
14   exit (0);
15 }
16