kernel_samsung_a34x-permissive/tools/build/feature/test-libpython.c

10 lines
106 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#include <Python.h>
int main(void)
{
Py_Initialize();
return 0;
}