diff options
author | ache <ache@FreeBSD.org> | 1995-08-04 06:45:55 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-08-04 06:45:55 +0000 |
commit | d96ed8f746353bfdcc122dc3aa89f200e919ada9 (patch) | |
tree | b69a438a2608b8ec5bd1ad5fe10b4cf7d10d06f1 | |
parent | 53823cfb2c2c1b11a77f7d0d8ac23f896d19b0ae (diff) | |
download | FreeBSD-src-d96ed8f746353bfdcc122dc3aa89f200e919ada9.zip FreeBSD-src-d96ed8f746353bfdcc122dc3aa89f200e919ada9.tar.gz |
Change outc to match prototype
-rw-r--r-- | usr.bin/tset/misc.c | 4 |
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__ |