| 213 | |
| 214 | |
| 215 | static int io_close (lua_State *L) { |
| 216 | if (lua_isnone(L, 1)) /* no argument? */ |
| 217 | lua_getfield(L, LUA_REGISTRYINDEX, IO_OUTPUT); /* use standard output */ |
| 218 | return f_close(L); |
| 219 | } |
| 220 | |
| 221 | |
| 222 | static int f_gc (lua_State *L) { |
nothing calls this directly
no test coverage detected