-Wall -Werror -W -pedantic clean
This commit is contained in:
6
io.c
6
io.c
@ -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]);
|
||||
|
Reference in New Issue
Block a user