mirror of
https://github.com/ksherlock/mpw.git
synced 2025-03-11 11:31:11 +00:00
--shell option for future compatibility.
This commit is contained in:
parent
5976f91a89
commit
51a86117b8
@ -784,6 +784,7 @@ int main(int argc, char **argv)
|
||||
kTraceMPW,
|
||||
kDebugger,
|
||||
kMemoryStats,
|
||||
kShell,
|
||||
};
|
||||
static struct option LongOpts[] =
|
||||
{
|
||||
@ -804,6 +805,7 @@ int main(int argc, char **argv)
|
||||
|
||||
{ "help", no_argument, NULL, 'h' },
|
||||
{ "version", no_argument, NULL, 'V' },
|
||||
{ "shell", no_argument, NULL, kShell },
|
||||
{ NULL, 0, NULL, 0 }
|
||||
};
|
||||
|
||||
@ -844,6 +846,9 @@ int main(int argc, char **argv)
|
||||
Flags.debugger = true;
|
||||
break;
|
||||
|
||||
case kShell:
|
||||
break;
|
||||
|
||||
case 'm':
|
||||
if (!parse_number(optarg, &Flags.machine))
|
||||
exit(EX_CONFIG);
|
||||
|
Loading…
x
Reference in New Issue
Block a user