comparison src/lua-test.c @ 2409:89d0ae6cb123

update package lua
author beoran <beoran@rubyforge.org>
date Mon, 16 Apr 2012 03:40:31 +1000
parents 99516e73b368
children
comparison
equal deleted inserted replaced
2408:6cca7503b508 2409:89d0ae6cb123
12 lua_State *L; 12 lua_State *L;
13 13
14 (void)argc; 14 (void)argc;
15 (void)argv; 15 (void)argv;
16 16
17 L = lua_open(); 17 L = luaL_newstate();
18 lua_close(L); 18 lua_close(L);
19 return 0; 19 return 0;
20 } 20 }