xpipe: introduce (saves ~170 bytes)
udhcp/signalpipe.c: use pipe instead of socketpair.

diff --git a/shell/hush.c b/shell/hush.c
index 800b0f9..2e6f286 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1800,8 +1800,7 @@
 
 		/* pipes are inserted between pairs of commands */
 		if ((i + 1) < pi->num_progs) {
-			if (pipe(pipefds) < 0)
-				bb_perror_msg_and_die("pipe");
+			pipe(pipefds);
 			nextout = pipefds[1];
 		} else {
 			nextout = 1;
@@ -3134,8 +3133,7 @@
 	FILE *pf;
 	int pid, channel[2];
 
-	if (pipe(channel) < 0)
-		bb_perror_msg_and_die("pipe");
+	xpipe(channel);
 #if BB_MMU
 	pid = fork();
 #else