X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0a032eea07f6d77ac6ea4d5a39c9491c34358058..6319a50c4be2bcfad3e9cfcce034e9b5adccf0a8:/sbr/push.c?ds=sidebyside diff --git a/sbr/push.c b/sbr/push.c index 115abac1..4576c8e9 100644 --- a/sbr/push.c +++ b/sbr/push.c @@ -1,5 +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 @@ -8,17 +7,16 @@ #include #include +#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 */