| 12054 | |
| 12055 | |
| 12056 | static int io_gc (lua_State *L) { |
| 12057 | FILE *f = *tofilep(L); |
| 12058 | /* ignore closed files */ |
| 12059 | if (f != NULL) |
| 12060 | aux_close(L); |
| 12061 | return 0; |
| 12062 | } |
| 12063 | |
| 12064 | |
| 12065 | static int io_tostring (lua_State *L) { |
nothing calls this directly
no test coverage detected