blob: 0a461b27c6526d0e0a7cbf055f40335793f99822 [file] [log] [blame]
/*
#progos: linux
*/
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main (void)
{
if (sched_getscheduler (getpid ()) != SCHED_OTHER)
abort ();
printf ("pass\n");
exit (0);
}