1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-14 02:51:26 +00:00

build: fix missing prototypes in lua check fragment

This commit is contained in:
Stefano Pigozzi 2013-11-23 15:15:24 +01:00
parent 22d8cdfe90
commit 26f8887422

View File

@ -6,13 +6,13 @@
// filled on the python side with .format()
{additional_lua_test_header}
void test_lua(void) {{
static void test_lua(void) {{
lua_State *L = luaL_newstate();
lua_pushstring(L, "test");
lua_setglobal(L, "test");
}}
void test_other(void) {{
static void test_other(void) {{
// filled on the python side with .format()
{additional_lua_test_code}
}}