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
1 changed files with 2 additions and 2 deletions

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}
}}