blob: e448deb4124c1ea8ed96f7b9a430095cdcac2e88 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Arnaldo Carvalho de Melo1e6e7ea2017-05-04 10:30:40 -03002#ifndef _GNU_SOURCE
Arnaldo Carvalho de Melo120010c2017-03-02 12:55:49 -03003#define _GNU_SOURCE
Arnaldo Carvalho de Melo1e6e7ea2017-05-04 10:30:40 -03004#endif
Arnaldo Carvalho de Melo120010c2017-03-02 12:55:49 -03005#include <sched.h>
6
7int main(void)
8{
9 return sched_getcpu();
10}