summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1996-12-03 05:09:05 +0000
committerkstailey <kstailey@cvs.openbsd.org>1996-12-03 05:09:05 +0000
commit2145b7181864072ba85050cf685bf5bf8ada7412 (patch)
tree31b05d1721effd5d101bcd3dfa55bfd20d9fe92d
parente252f4ccc0b393b97733d9e93cc9adbd85634f82 (diff)
dev_type_stop() returns void not int
-rw-r--r--sys/sys/conf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/conf.h b/sys/sys/conf.h
index 13d6ed66871..7235e1ff912 100644
--- a/sys/sys/conf.h
+++ b/sys/sys/conf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.h,v 1.18 1996/11/11 18:47:27 kstailey Exp $ */
+/* $OpenBSD: conf.h,v 1.19 1996/12/03 05:09:04 kstailey Exp $ */
/* $NetBSD: conf.h,v 1.33 1996/05/03 20:03:32 christos Exp $ */
/*-
@@ -166,7 +166,7 @@ extern struct cdevsw cdevsw[];
/* cdevsw-specific types */
#define dev_type_read(n) int n __P((dev_t, struct uio *, int))
#define dev_type_write(n) int n __P((dev_t, struct uio *, int))
-#define dev_type_stop(n) int n __P((struct tty *, int))
+#define dev_type_stop(n) void n __P((struct tty *, int))
#define dev_type_tty(n) struct tty *n __P((dev_t))
#define dev_type_select(n) int n __P((dev_t, int, struct proc *))
#define dev_type_mmap(n) int n __P((dev_t, int, int))