| 221 | |
| 222 | |
| 223 | static int f_gc (lua_State *L) { |
| 224 | LStream *p = tolstream(L); |
| 225 | if (!isclosed(p) && p->f != NULL) |
| 226 | aux_close(L); /* ignore closed and incompletely open files */ |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | |
| 231 | /* |
nothing calls this directly
no test coverage detected