* Close the pipe, restoring the keyboard (CMD resets it, losing the mouse). */
(f)
| 121 | * Close the pipe, restoring the keyboard (CMD resets it, losing the mouse). |
| 122 | */ |
| 123 | int |
| 124 | pclose(f) |
| 125 | FILE *f; |
| 126 | { |
| 127 | int result; |
| 128 | |
| 129 | result = _pclose(f); |
| 130 | SetConsoleMode(tty, ENABLE_PROCESSED_INPUT | ENABLE_MOUSE_INPUT); |
| 131 | return result; |
| 132 | } |
| 133 | #endif |
| 134 | |
| 135 | /* |
no outgoing calls
no test coverage detected
searching dependent graphs…