Fix spelling errors, including binaries ones
[mmh] / sbr / execprog.c
index 28ef810..c10421d 100644 (file)
@@ -6,6 +6,7 @@
 #include <h/mh.h>
 #include <unistd.h>
 #include <stdarg.h>
+#include <sysexits.h>
 
 
 int
@@ -25,7 +26,7 @@ execprog(char *cmd, char **arg)
                execvp(cmd, arg);
                fprintf(stderr, "unable to exec ");
                perror(cmd);
-               _exit(-1);
+               _exit(EX_OSERR);
 
        default:
                /* parent */