** function to close 'popen' files */
| 106 | ** function to close 'popen' files |
| 107 | */ |
| 108 | static int io_pclose (lua_State *L) { |
| 109 | FILE **p = tofilep(L); |
| 110 | int ok = lua_pclose(L, *p); |
| 111 | *p = NULL; |
| 112 | return pushresult(L, ok, NULL); |
| 113 | } |
| 114 | |
| 115 | |
| 116 | /* |
nothing calls this directly
no test coverage detected