diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2002-09-29 11:42:36 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2002-09-29 11:42:36 +0000 |
| commit | b47483f6b819bb8244146638acb5807eb763d601 (patch) | |
| tree | f1ca36bb0fc3102c8fb592b286200a581c14e9e9 /sys/pc98 | |
| parent | 8bb39f715310ded34207036bd3cab702e5fa7a89 (diff) | |
Notes
Diffstat (limited to 'sys/pc98')
| -rw-r--r-- | sys/pc98/pc98/syscons.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/pc98/pc98/syscons.c b/sys/pc98/pc98/syscons.c index 48e149a5ff178..f8725e84afee9 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; |
