main.c 1.14 KB
Newer Older
1 2
/* main.c: defines main() for cc1, cc1plus, etc.

3
This file is part of GCC.
4

5 6 7 8
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
9

10 11 12 13
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
14 15

You should have received a copy of the GNU General Public License
16
along with GCC; see the file COPYING.  If not, write to the Free
Kelley Cook committed
17 18
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.  */
19

20 21
#include "config.h"
#include "system.h"
22 23
#include "coretypes.h"
#include "tm.h"
24 25
#include "toplev.h"

26
int main (int argc, char **argv);
27 28 29 30 31 32

/* We define main() to call toplev_main(), which is defined in toplev.c.
   We do this in a separate file in order to allow the language front-end
   to define a different main(), if it so desires.  */

int
33
main (int argc, char **argv)
34
{
35
  return toplev_main (argc, (const char **) argv);
36
}