* Low level console routines. */
| 412 | * Low level console routines. |
| 413 | */ |
| 414 | int |
| 415 | cngetc(void) |
| 416 | { |
| 417 | int c; |
| 418 | |
| 419 | if (cn_mute) |
| 420 | return (-1); |
| 421 | while ((c = cncheckc()) == -1) |
| 422 | cpu_spinwait(); |
| 423 | if (c == '\r') |
| 424 | c = '\n'; /* console input is always ICRNL */ |
| 425 | return (c); |
| 426 | } |
| 427 | |
| 428 | int |
| 429 | cncheckc(void) |
no test coverage detected