Move #include from h/mh.h to source files
[mmh] / sbr / execprog.c
index 6a4a912..28ef810 100644 (file)
@@ -4,6 +4,8 @@
 */
 
 #include <h/mh.h>
+#include <unistd.h>
+#include <stdarg.h>
 
 
 int
@@ -11,14 +13,12 @@ execprog(char *cmd, char **arg)
 {
        pid_t pid;
 
-       context_save();
        fflush(stdout);
-
        switch (pid = fork()) {
        case -1:
                /* fork error */
                advise("fork", "unable to");
-               return 1;
+               return -1;
 
        case 0:
                /* child */
@@ -29,10 +29,10 @@ execprog(char *cmd, char **arg)
 
        default:
                /* parent */
-               return (pidwait(pid, -1) & 0377 ? 1 : 0);
+               return pidXwait(pid, cmd);
        }
 
-       return 1;  /* NOT REACHED */
+       return -1;  /* NOT REACHED */
 }