gcc.c (main): Quiet compiler warnings.
* gcc.c (main): Quiet compiler warnings. argv is assumed to be writable in parts of the GCC code. From-SVN: r34550
This commit is contained in:
parent
db3d8cded1
commit
e9cefc3e99
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2000-06-14 David O'Brien <obrien@FreeBSD.org>
|
||||
|
||||
* gcc.c (main): Quiet compiler warnings. argv is assumed to be
|
||||
writable in parts of the GCC code.
|
||||
|
||||
* config/elfos.h (ASM_GENERATE_INTERNAL_LABEL): Make printf
|
||||
specification match cast.
|
||||
|
||||
|
|
|
@ -5135,7 +5135,7 @@ extern int main PARAMS ((int, const char **));
|
|||
int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
const char **argv;
|
||||
char **argv;
|
||||
{
|
||||
register size_t i;
|
||||
size_t j;
|
||||
|
|
Loading…
Add table
Reference in a new issue