diff options
-rw-r--r-- | device/cons.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/device/cons.c b/device/cons.c index b35e79f..285fb99 100644 --- a/device/cons.c +++ b/device/cons.c @@ -42,8 +42,8 @@ static struct consdev *cn_tab = 0; /* physical console device info */ * is enabled. This can be useful to debug (or catch panics from) code early * in the bootstrap procedure. */ -int (*romgetc)() = 0; -void (*romputc)() = 0; +int (*romgetc)(char c) = 0; +void (*romputc)(char c) = 0; #if CONSBUFSIZE > 0 /* |