sdk-hwV1.3/lichee/linux-4.9/tools/build/feature/test-libpython-version.c

11 lines
100 B
C
Raw Normal View History

2024-05-07 10:09:20 +00:00
#include <Python.h>
#if PY_VERSION_HEX >= 0x03000000
#error
#endif
int main(void)
{
return 0;
}