/* * linux-launcher.c * Copyright (C) 2017 Kovid Goyal * * Distributed under terms of the GPL3 license. */ #include int main(int argc, char *argv[]) { wchar_t *wargv[2] = {L"kitty-test", L"test.py"}; return Py_Main(2, wargv); }