| 132 | |
| 133 | |
| 134 | static int io_close (lua_State *L) { |
| 135 | if (lua_isnone(L, 1)) |
| 136 | lua_rawgeti(L, LUA_ENVIRONINDEX, IO_OUTPUT); |
| 137 | tofile(L); /* make sure argument is a file */ |
| 138 | return aux_close(L); |
| 139 | } |
| 140 | |
| 141 | |
| 142 | static int io_gc (lua_State *L) { |
nothing calls this directly
no test coverage detected