Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

20 lines
311 B
C

#ifndef lint
static char sccsid[] = "@(#)xpipe.c 1.1 94/10/31 SMI"; /* from System III 3.1 */
#endif
/*
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));
}