| 140 | |
| 141 | |
| 142 | static int io_gc (lua_State *L) { |
| 143 | FILE *f = *tofilep(L); |
| 144 | /* ignore closed files */ |
| 145 | if (f != NULL) |
| 146 | aux_close(L); |
| 147 | return 0; |
| 148 | } |
| 149 | |
| 150 | |
| 151 | static int io_tostring (lua_State *L) { |
nothing calls this directly
no test coverage detected