** function to close 'popen' files */
| 269 | ** function to close 'popen' files |
| 270 | */ |
| 271 | static int io_pclose (lua_State *L) { |
| 272 | LStream *p = tolstream(L); |
| 273 | return luaL_execresult(L, l_pclose(L, p->f)); |
| 274 | } |
| 275 | |
| 276 | |
| 277 | static int io_popen (lua_State *L) { |
nothing calls this directly
no test coverage detected