diff options
Diffstat (limited to 'device')
-rw-r--r-- | device/chario.c | 1 | ||||
-rw-r--r-- | device/cons.c | 4 | ||||
-rw-r--r-- | device/net_io.c | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/device/chario.c b/device/chario.c index 1c1ec54..8108d21 100644 --- a/device/chario.c +++ b/device/chario.c @@ -1080,6 +1080,7 @@ boolean_t ttymodem( * * Tty must be locked and on master. */ +void tty_cts( struct tty * tp, boolean_t cts_up) diff --git a/device/cons.c b/device/cons.c index 07a1958..7fdb959 100644 --- a/device/cons.c +++ b/device/cons.c @@ -72,6 +72,7 @@ static char *consbp = consbuf; static int consbufused = 0; #endif +void cninit() { struct consdev *cp; @@ -225,6 +226,7 @@ cncontrol(dev, cmd, data) #endif #endif +int cngetc() { if (cn_tab) @@ -235,6 +237,7 @@ cngetc() } #ifdef MACH_KERNEL +int cnmaygetc() { if (cn_tab) @@ -245,6 +248,7 @@ cnmaygetc() } #endif +void cnputc(c) int c; { diff --git a/device/net_io.c b/device/net_io.c index e0eb334..71d92b4 100644 --- a/device/net_io.c +++ b/device/net_io.c @@ -2104,6 +2104,7 @@ net_add_q_info (rcv_port) return (int)qlimit; } +void net_del_q_info (qlimit) int qlimit; { @@ -2121,6 +2122,7 @@ net_del_q_info (qlimit) * Deallocates dead net_rcv_port_t. * No locks should be held when called. */ +void net_free_dead_infp (dead_infp) queue_entry_t dead_infp; { @@ -2142,6 +2144,7 @@ net_free_dead_infp (dead_infp) * Deallocates dead net_hash_entry_t. * No locks should be held when called. */ +void net_free_dead_entp (dead_entp) queue_entry_t dead_entp; { |