diff options
Diffstat (limited to 'device/cons.c')
-rw-r--r-- | device/cons.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/device/cons.c b/device/cons.c index 07a1958e..7fdb959f 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; { |