2017-11-01 15:07:57 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-09-30 15:18:37 +02:00
|
|
|
#include <Python.h>
|
2013-10-07 13:27:23 +02:00
|
|
|
|
2013-09-30 15:18:37 +02:00
|
|
|
int main(void)
|
|
|
|
|
{
|
|
|
|
|
Py_Initialize();
|
2013-10-07 13:27:23 +02:00
|
|
|
|
2013-09-30 15:18:37 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|