summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-16 12:38:17 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-16 12:38:17 +0000
commit2ee82825aa7a08dca369d4bc278bd9f149d6295f (patch)
tree96097838c5dcd9eb4a35b12044b2a111d9b08f4f
parenta581080da4ef88ff07323dfe086ef3db3716f132 (diff)
Wall happiness
-rw-r--r--sys/dev/ic/cy.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/dev/ic/cy.c b/sys/dev/ic/cy.c
index 93b656e632a..14a17d9c091 100644
--- a/sys/dev/ic/cy.c
+++ b/sys/dev/ic/cy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cy.c,v 1.2 1996/08/23 20:20:15 niklas Exp $ */
+/* $OpenBSD: cy.c,v 1.3 1996/10/16 12:38:16 deraadt Exp $ */
/*
* cy.c
@@ -304,6 +304,14 @@ cyattach(parent, self, aux)
/*
* open routine. returns zero if successfull, else error code
*/
+int cyopen __P((dev_t, int, int, struct proc *));
+int cyclose __P((dev_t, int, int, struct proc *));
+int cyread __P((dev_t, struct uio *, int));
+int cywrite __P((dev_t, struct uio *, int));
+struct tty *cytty __P((dev_t));
+int cyioctl __P((dev_t, u_long, caddr_t, int, struct proc *));
+void cystop __P((struct tty *, int flag));
+
int
cyopen(dev, flag, mode, p)
dev_t dev;