diff options
Diffstat (limited to 'bin/sh/exec.h')
-rw-r--r-- | bin/sh/exec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/sh/exec.h b/bin/sh/exec.h index 32bf131..45330a1 100644 --- a/bin/sh/exec.h +++ b/bin/sh/exec.h @@ -57,6 +57,10 @@ struct cmdentry { }; +/* action to find_command() */ +#define DO_ERR 0x01 /* prints errors */ +#define DO_NOFUNC 0x02 /* don't return shell functions, for command */ + extern const char *pathopt; /* set by padvance */ extern int exerrno; /* last exec error */ |