| 2064 | */ |
| 2065 | |
| 2066 | static int |
| 2067 | ttyhook_defrint(struct tty *tp, char c, int flags) |
| 2068 | { |
| 2069 | |
| 2070 | if (ttyhook_rint_bypass(tp, &c, 1) != 1) |
| 2071 | return (-1); |
| 2072 | |
| 2073 | return (0); |
| 2074 | } |
| 2075 | |
| 2076 | int |
| 2077 | ttyhook_register(struct tty **rtp, struct proc *p, int fd, struct ttyhook *th, |
nothing calls this directly
no test coverage detected