| 233 | |
| 234 | |
| 235 | static int f_gc (lua_State *L) { |
| 236 | LStream *p = tolstream(L); |
| 237 | if (!isclosed(p) && p->f != NULL) |
| 238 | aux_close(L); /* ignore closed and incompletely open files */ |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | |
| 243 | /* |
nothing calls this directly
no test coverage detected