| 142 | |
| 143 | #undef lua_pcall |
| 144 | LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfunc) { |
| 145 | return lua_pcallk(L, nargs, nresults, errfunc, 0, NULL); |
| 146 | } |
| 147 | |
| 148 | #undef lua_tonumber |
| 149 | LUA_API lua_Number lua_tonumber (lua_State *L, int idx) { |
no test coverage detected