diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-12-03 05:21:47 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-12-03 05:21:47 +0000 |
commit | 3aaae5e5adc39b981fa386a7a4f78490d51889ae (patch) | |
tree | 576dfe10f06cfac15ef225d512211fb228cd71b5 /sys/dev | |
parent | 1d689e64544b0322b84cc9a8d25af0619ae42031 (diff) |
void zsstop() -> int zsstop()
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/z8530tty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/z8530tty.c b/sys/dev/ic/z8530tty.c index 51a7779d115..c768bad031d 100644 --- a/sys/dev/ic/z8530tty.c +++ b/sys/dev/ic/z8530tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: z8530tty.c,v 1.7 1996/11/28 23:27:57 niklas Exp $ */ +/* $OpenBSD: z8530tty.c,v 1.8 1996/12/03 05:21:46 kstailey Exp $ */ /* $NetBSD: z8530tty.c,v 1.13 1996/10/16 20:42:14 gwr Exp $ */ /* @@ -641,7 +641,7 @@ out: /* * Stop output, e.g., for ^S or output flush. */ -void +int zsstop(tp, flag) struct tty *tp; int flag; |