Change outc to match prototype

This commit is contained in:
Andrey A. Chernov 1995-08-04 06:45:55 +00:00
parent 252f47a817
commit eba2820db2

View File

@ -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__