Change outc to match prototype

This commit is contained in:
ache 1995-08-04 06:45:55 +00:00
parent 53823cfb2c
commit d96ed8f746

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__