** function to close 'popen' files */
| 282 | ** function to close 'popen' files |
| 283 | */ |
| 284 | static int io_pclose (lua_State *L) { |
| 285 | LStream *p = tolstream(L); |
| 286 | errno = 0; |
| 287 | return luaL_execresult(L, l_pclose(L, p->f)); |
| 288 | } |
| 289 | |
| 290 | |
| 291 | static int io_popen (lua_State *L) { |
nothing calls this directly
no test coverage detected