From 9eb2730eab81c7732ecd9727c64165cab01b0d2b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 27 Feb 1998 10:00:44 +0000 Subject: Update. 1998-02-25 Andreas Schwab * sysdeps/libm-ieee754/s_isnanl.c: Ignore the explicit integer bit. * sysdeps/libm-ieee754/s_isinfl.c: Likewise. --- sunrpc/rpc_main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sunrpc/rpc_main.c') diff --git a/sunrpc/rpc_main.c b/sunrpc/rpc_main.c index 0b30d6f..a5249e3 100644 --- a/sunrpc/rpc_main.c +++ b/sunrpc/rpc_main.c @@ -349,7 +349,11 @@ open_input (const char *infile, const char *define) int pd[2]; infilename = (infile == NULL) ? "" : infile; - pipe (pd); + if (pipe (pd) != 0) + { + perror ("pipe"); + exit (1); + } switch (fork ()) { case 0: -- cgit v1.1