brintos

brintos / linux-shallow public Read only

0
0
Text · 166 B · 48995ac Raw
13 lines · c
1// SPDX-License-Identifier: GPL-2.02#ifndef _GNU_SOURCE3#define _GNU_SOURCE4#endif5#include <sched.h>6 7int main(void)8{9	return sched_getcpu();10}11 12#undef _GNU_SOURCE13