diff options
Diffstat (limited to 'bin/sh/options.h')
-rw-r--r-- | bin/sh/options.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/sh/options.h b/bin/sh/options.h index 5004549..acc2a11 100644 --- a/bin/sh/options.h +++ b/bin/sh/options.h @@ -62,8 +62,9 @@ struct shparam { #define privileged optlist[15].val #define Tflag optlist[16].val #define Pflag optlist[17].val +#define hflag optlist[18].val -#define NOPTS 18 +#define NOPTS 19 struct optent { const char *name; @@ -91,6 +92,7 @@ struct optent optlist[NOPTS] = { { "privileged", 'p', 0 }, { "trapsasync", 'T', 0 }, { "physical", 'P', 0 }, + { "trackall", 'h', 0 }, }; #else extern struct optent optlist[NOPTS]; @@ -108,8 +110,5 @@ void procargs(int, char **); void optschanged(void); void setparam(char **); void freeparam(struct shparam *); -int shiftcmd(int, char **); -int setcmd(int, char **); -int getoptscmd(int, char **); int nextopt(const char *); void getoptsreset(const char *); |