diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-28 05:36:53 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-28 05:36:53 +0000 |
commit | b71cbc1825f021d237412c3f08f3f2947932e280 (patch) | |
tree | 1bc6502df29a725994be0303468dc43be10ea293 /gcc/gcc.c | |
parent | 76e7e6a5e1d36f17773e0c9694e681372261530b (diff) | |
download | gcc-b71cbc1825f021d237412c3f08f3f2947932e280.tar.gz |
* gcc.c (main): Change type of argv to "char **".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107594 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 6f4b65b2e50..0673cb5c460 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. */ |