From d96ed8f746353bfdcc122dc3aa89f200e919ada9 Mon Sep 17 00:00:00 2001 From: ache Date: Fri, 4 Aug 1995 06:45:55 +0000 Subject: Change outc to match prototype --- usr.bin/tset/misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/tset') diff --git a/usr.bin/tset/misc.c b/usr.bin/tset/misc.c index c96c48c..27a2bf6 100644 --- a/usr.bin/tset/misc.c +++ b/usr.bin/tset/misc.c @@ -61,11 +61,11 @@ cat(file) (void)close(fd); } -void +int outc(c) int c; { - (void)putc(c, stderr); + return putc(c, stderr); } #if __STDC__ -- cgit v1.1