From 07a3df01000ca438d63254fc86a0d8aaf8db6f7d Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Mon, 28 Nov 2005 05:36:53 +0000 Subject: * gcc.c (main): Change type of argv to "char **". From-SVN: r107594 --- gcc/gcc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/gcc.c') diff --git a/gcc/gcc.c b/gcc/gcc.c index 6f4b65b..0673cb5 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -6010,10 +6010,10 @@ fatal_error (int signum) kill (getpid (), signum); } -extern int main (int, const char **); +extern int main (int, char **); int -main (int argc, const char **argv) +main (int argc, char **argv) { size_t i; int value; @@ -6126,7 +6126,7 @@ main (int argc, const char **argv) Make a table of specified input files (infiles, n_infiles). Decode switches that are handled locally. */ - process_command (argc, argv); + process_command (argc, (const char **) argv); /* Initialize the vector of specs to just the default. This means one element containing 0s, as a terminator. */ -- cgit v1.1