diff options
author | 1996-10-16 12:38:16 +0000 | |
---|---|---|
committer | 1996-10-16 12:38:16 +0000 | |
commit | c5144064979b746e8543dc57b5403ef16b41ece1 (patch) | |
tree | 6280aff8270abf071810e68c5e0145e13a08a8d4 | |
parent | -Wall happiness (diff) | |
download | wireguard-openbsd-c5144064979b746e8543dc57b5403ef16b41ece1.tar.xz wireguard-openbsd-c5144064979b746e8543dc57b5403ef16b41ece1.zip |
Wall happiness
-rw-r--r-- | sys/dev/ic/cy.c | 10 |
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; |