| 226 | |
| 227 | |
| 228 | static int io_close (lua_State *L) { |
| 229 | if (lua_isnone(L, 1)) /* no argument? */ |
| 230 | lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use default output */ |
| 231 | return f_close(L); |
| 232 | } |
| 233 | |
| 234 | |
| 235 | static int f_gc (lua_State *L) { |
nothing calls this directly
no test coverage detected