-
-/*
- * 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
#include <h/mh.h>
#include <h/signals.h>
+#include "m_mktemp.h"
void
switch (pid) {
case -1:
/* fork error */
- advise (NULL, "unable to fork, so can't push...");
+ inform("unable to fork, so can't push...");
break;
case 0:
done (0);
}
}
-