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