mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
0ec572f057
Since we get all the tests in a single .c file for a first test, tools/build/feature/test-all.c, if individual tests set that define and fail to undef it at its end, then it the test-all.c build will fail due to defining _GNU_SOURCE multiple times, getting us to the slow path, so undef it at the end in tests that define it. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-w6s00jfo1xabgphzczadl59b@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
10 lines
125 B
C
10 lines
125 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <Python.h>
|
|
|
|
int main(void)
|
|
{
|
|
Py_Initialize();
|
|
|
|
return 0;
|
|
}
|
|
#undef _GNU_SOURCE
|