]> git.sur5r.net Git - cc65/commitdiff
Update main.c 443/head
authorStefan <stefan.haubenthal@gmail.com>
Sun, 28 May 2017 14:17:34 +0000 (16:17 +0200)
committerGitHub <noreply@github.com>
Sun, 28 May 2017 14:17:34 +0000 (16:17 +0200)
src/ar65/main.c

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