| 12046 | |
| 12047 | |
| 12048 | static int io_close (lua_State *L) { |
| 12049 | if (lua_isnone(L, 1)) |
| 12050 | lua_rawgeti(L, LUA_ENVIRONINDEX, IO_OUTPUT); |
| 12051 | tofile(L); /* make sure argument is a file */ |
| 12052 | return aux_close(L); |
| 12053 | } |
| 12054 | |
| 12055 | |
| 12056 | static int io_gc (lua_State *L) { |
nothing calls this directly
no test coverage detected