handle restructure of C library, get machine type cleanly
[unix-history] / usr / src / local / sccscmds / sccscmds.ok / util / xpipe.c
static char Sccsid[] = "@(#)xpipe.c 1.2 %G%";
/*
Interface to pipe(II) which handles all error conditions.
Returns 0 on success,
fatal() on failure.
*/
xpipe(t)
int *t;
{
static char p[] = "pipe";
if (pipe(t) == 0)
return(0);
return(xmsg(p,p));
}