tcc.c: fix argv index for parse_args
commit27d38bf23f74d342a2b2c2065a72727c0d0d5e0d
authorgrischka <grischka>
Sun, 13 May 2012 08:21:39 +0000 (13 10:21 +0200)
committergrischka <grischka>
Tue, 12 Jun 2012 13:32:44 +0000 (12 15:32 +0200)
tree45e80ba97ec3b42d9bcd97e50a8f36c8096626a4
parent32cd070c969ffd0b405460ef75f6fa095ed9657e
tcc.c: fix argv index for parse_args

I probably broke that myself earlier.  In any case parse_args
needs to start with index 0 because it is is used also recursively
to expand the shebang command from scripts such as
    #!/usr/local/bin/tcc -run -L/usr/X11R6/lib -lX11
which arrives at tcc as only two argv's
    "tcc" "-run -L/usr/X11R6/lib -lX11"
tcc.c