summaryrefslogtreecommitdiff
path: root/sys/kern/tty.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/kern/tty.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r--sys/kern/tty.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c
index 232ca05f1d9..987aac149d7 100644
--- a/sys/kern/tty.c
+++ b/sys/kern/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.50 2002/01/30 20:45:35 nordin Exp $ */
+/* $OpenBSD: tty.c,v 1.51 2002/03/14 01:27:05 millert Exp $ */
/* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */
/*-
@@ -65,16 +65,16 @@
#include <uvm/uvm_extern.h>
#include <dev/rndvar.h>
-static int ttnread __P((struct tty *));
-static void ttyblock __P((struct tty *));
-void ttyunblock __P((struct tty *));
-static void ttyecho __P((int, struct tty *));
-static void ttyrubo __P((struct tty *, int));
-static int proc_compare __P((struct proc *, struct proc *));
-int filt_ttyread __P((struct knote *kn, long hint));
-void filt_ttyrdetach __P((struct knote *kn));
-int filt_ttywrite __P((struct knote *kn, long hint));
-void filt_ttywdetach __P((struct knote *kn));
+static int ttnread(struct tty *);
+static void ttyblock(struct tty *);
+void ttyunblock(struct tty *);
+static void ttyecho(int, struct tty *);
+static void ttyrubo(struct tty *, int);
+static int proc_compare(struct proc *, struct proc *);
+int filt_ttyread(struct knote *kn, long hint);
+void filt_ttyrdetach(struct knote *kn);
+int filt_ttywrite(struct knote *kn, long hint);
+void filt_ttywdetach(struct knote *kn);
/* Symbolic sleep message strings. */
char ttclos[] = "ttycls";