diff options
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/cbus/sio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pc98/cbus/sio.c b/sys/pc98/cbus/sio.c index 2dd7500..d2b78da 100644 --- a/sys/pc98/cbus/sio.c +++ b/sys/pc98/cbus/sio.c @@ -3777,13 +3777,13 @@ siogdbterm(void) static void siogdbputc(int c) { - sio__cnputc(NULL, c); + sio_cnputc(NULL, c); } static int siogdbgetc(void) { - return (sio__cngetc(NULL)); + return (sio_cngetc(NULL)); } #endif |