-Wall -Werror -W -pedantic clean

This commit is contained in:
tg
2004-10-28 11:03:24 +00:00
parent 06411e2978
commit 7ad780aa98
28 changed files with 442 additions and 465 deletions

6
io.c
View File

@ -1,4 +1,4 @@
/** $MirBSD: io.c,v 1.5 2004/09/21 11:57:09 tg Exp $ */
/** $MirBSD: io.c,v 1.6 2004/10/28 11:03:23 tg Exp $ */
/* $OpenBSD: io.c,v 1.13 2003/11/10 21:26:39 millert Exp $ */
/*
@ -330,7 +330,7 @@ restfd(fd, ofd)
void
openpipe(pv)
register int *pv;
int *pv;
{
if (pipe(pv) < 0)
errorf("can't create pipe - try again");
@ -340,7 +340,7 @@ openpipe(pv)
void
closepipe(pv)
register int *pv;
int *pv;
{
close(pv[0]);
close(pv[1]);