Forwarders for the public API (C calling convention and no LJ_NORET). */
| 1057 | |
| 1058 | /* Forwarders for the public API (C calling convention and no LJ_NORET). */ |
| 1059 | LUA_API int lua_error(lua_State *L) |
| 1060 | { |
| 1061 | lj_err_run(L); |
| 1062 | return 0; /* unreachable */ |
| 1063 | } |
| 1064 | |
| 1065 | LUALIB_API int luaL_argerror(lua_State *L, int narg, const char *msg) |
| 1066 | { |
no test coverage detected