linux-surface/tools/build/feature/test-sched_getcpu.c
2017-08-10 09:25:24 -04:00

10 lines
110 B
C

#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <sched.h>
int main(void)
{
return sched_getcpu();
}