bin/ksh/exec.c
103
newenv(E_EXEC);
bin/ksh/exec.c
252
e->type = E_EXEC; /* no more need for error handler */
bin/sh/error.c
309
#define ALL (E_OPEN|E_CREAT|E_EXEC)
bin/sh/error.c
313
{ EACCES, E_EXEC, "no execute permission" },
bin/sh/error.c
319
{ ENOENT, E_EXEC, "not found" },
bin/sh/error.c
322
{ ENOTDIR, E_EXEC, "not found" },
bin/sh/error.c
339
{ EAGAIN, E_EXEC, "not enough memory" },
bin/sh/error.c
363
{ E2BIG, E_EXEC, "argument list too long" },
bin/sh/error.c
365
{ ELIBACC, E_EXEC, "shared library missing" },
bin/sh/exec.c
131
action = E_EXEC;
bin/sh/exec.c
734
outfmt(out2, "%s: %s\n", name, errmsg(e, E_EXEC));