1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-10 13:29:50 +00:00

Update main.c

This commit is contained in:
Stefan 2017-05-28 16:17:34 +02:00 committed by GitHub
parent 49e22f566f
commit 80feb80168

View File

@ -62,7 +62,7 @@ static void Usage (void)
{ {
fprintf (stderr, "Usage: %s <operation ...> lib file|module ...\n" fprintf (stderr, "Usage: %s <operation ...> lib file|module ...\n"
"Operations are some of:\n" "Operations are some of:\n"
"\ta\tAdd modules\n" "\tr\tAdd modules\n"
"\td\tDelete modules\n" "\td\tDelete modules\n"
"\tt\tList library table\n" "\tt\tList library table\n"
"\tv\tIncrease verbosity (put before other operation)\n" "\tv\tIncrease verbosity (put before other operation)\n"
@ -96,7 +96,8 @@ int main (int argc, char* argv [])
switch (Arg [0]) { switch (Arg [0]) {
case 'a': case 'r': /* POSIX.2 */
case 'a': /* staying compatible */
AddObjFiles (ArgCount - I - 1, &ArgVec[I+1]); AddObjFiles (ArgCount - I - 1, &ArgVec[I+1]);
break; break;