aboutsummaryrefslogtreecommitdiffstats
path: root/tools/build/feature/test-sched_getcpu.c
blob: 9c6b4cbffb1cae2759a524b70d36cee1b8f9f02e (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <sched.h>

int main(void)
{
	return sched_getcpu();
}