summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authornyan <nyan@FreeBSD.org>2002-09-29 11:42:36 +0000
committernyan <nyan@FreeBSD.org>2002-09-29 11:42:36 +0000
commitc047d90fa905d630c3dcd82c41028c4d9db5373b (patch)
treef1ca36bb0fc3102c8fb592b286200a581c14e9e9 /sys
parent58532be08079c953325129e4a732ef24194da909 (diff)
downloadFreeBSD-src-c047d90fa905d630c3dcd82c41028c4d9db5373b.zip
FreeBSD-src-c047d90fa905d630c3dcd82c41028c4d9db5373b.tar.gz
Merged from sys/dev/syscons/syscons.c revision 1.389.
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/pc98/syscons.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/pc98/pc98/syscons.c b/sys/pc98/pc98/syscons.c
index 48e149a..f8725e8 100644
--- a/sys/pc98/pc98/syscons.c
+++ b/sys/pc98/pc98/syscons.c
@@ -441,7 +441,7 @@ scdevtounit(dev_t dev)
return vty/MAXCONS;
}
-int
+static int
scopen(dev_t dev, int flag, int mode, struct thread *td)
{
int unit = scdevtounit(dev);
@@ -500,7 +500,7 @@ scopen(dev_t dev, int flag, int mode, struct thread *td)
return error;
}
-int
+static int
scclose(dev_t dev, int flag, int mode, struct thread *td)
{
struct tty *tp = dev->si_tty;
@@ -548,7 +548,7 @@ scclose(dev_t dev, int flag, int mode, struct thread *td)
return(0);
}
-int
+static int
scread(dev_t dev, struct uio *uio, int flag)
{
if (!sc_saver_keyb_only)
@@ -639,7 +639,7 @@ scparam(struct tty *tp, struct termios *t)
return 0;
}
-int
+static int
scioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct thread *td)
{
int error;
@@ -3378,7 +3378,7 @@ next_code:
goto next_code;
}
-int
+static int
scmmap(dev_t dev, vm_offset_t offset, int nprot)
{
scr_stat *scp;
OpenPOWER on IntegriCloud