]> diplodocus.org Git - nmh/blobdiff - sbr/push.c
SPECS: Use `command-line interface' in one-line summary.
[nmh] / sbr / push.c
index 03e8a4566f20c923adc28b5cef487bba6f005082..4576c8e9e90ab7a23ad06c0dba54e3170fb4254a 100644 (file)
@@ -1,6 +1,4 @@
-
-/*
- * push.c -- push a fork into the background
+/* push.c -- push a fork into the background
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -9,17 +7,16 @@
 
 #include <h/mh.h>
 #include <h/signals.h>
+#include "h/done.h"
+#include "m_mktemp.h"
 
 
 void
 push(void)
 {
     pid_t pid;
-    int i;
-
-    for (i = 0; (pid = fork()) == -1 && i < 5; i++)
-       sleep (5);
 
+    pid = fork();
     switch (pid) {
        case -1:
            /* fork error */
@@ -53,4 +50,3 @@ push(void)
            done (0);
     }
 }
-