Files
linux-stable-mirror/tools/perf/config/feature-checks/test-libpython-version.c
T
2013-10-09 08:48:44 +02:00

11 lines
100 B
C

#include <Python.h>
#if PY_VERSION_HEX >= 0x03000000
#error
#endif
int main(void)
{
return 0;
}