diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
commit | 3264aec746947db8598130cb0ac382cf0b2a10cf (patch) | |
tree | 13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/rp | |
parent | e8f7a49843febbd1d96e06f28e56160c942029dd (diff) | |
download | FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.zip FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.tar.gz |
Remove __P.
Diffstat (limited to 'sys/dev/rp')
-rw-r--r-- | sys/dev/rp/rp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/rp/rp.c b/sys/dev/rp/rp.c index 76894fa8..53b7368 100644 --- a/sys/dev/rp/rp.c +++ b/sys/dev/rp/rp.c @@ -619,11 +619,11 @@ static struct rp_port *p_rp_table[MAX_RP_PORTS]; * The top-level routines begin here */ -static int rpparam __P((struct tty *, struct termios *)); -static void rpstart __P((struct tty *)); -static void rpstop __P((struct tty *, int)); -static void rphardclose __P((struct rp_port *)); -static void rp_disc_optim __P((struct tty *tp, struct termios *t)); +static int rpparam(struct tty *, struct termios *); +static void rpstart(struct tty *); +static void rpstop(struct tty *, int); +static void rphardclose (struct rp_port *); +static void rp_disc_optim (struct tty *tp, struct termios *t); static _INLINE_ void rp_do_receive(struct rp_port *rp, struct tty *tp, CHANNEL_t *cp, unsigned int ChanStatus) |