static char Sccsid[] = "@(#)xpipe.c 1.2 02/15/87"; /* 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)); }