summaryrefslogtreecommitdiffstats
path: root/usr.bin/tset
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1995-08-04 06:45:55 +0000
committerache <ache@FreeBSD.org>1995-08-04 06:45:55 +0000
commitd96ed8f746353bfdcc122dc3aa89f200e919ada9 (patch)
treeb69a438a2608b8ec5bd1ad5fe10b4cf7d10d06f1 /usr.bin/tset
parent53823cfb2c2c1b11a77f7d0d8ac23f896d19b0ae (diff)
downloadFreeBSD-src-d96ed8f746353bfdcc122dc3aa89f200e919ada9.zip
FreeBSD-src-d96ed8f746353bfdcc122dc3aa89f200e919ada9.tar.gz
Change outc to match prototype
Diffstat (limited to 'usr.bin/tset')
-rw-r--r--usr.bin/tset/misc.c4
1 files changed, 2 insertions, 2 deletions
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__
OpenPOWER on IntegriCloud