1 /* Note that this file is not used as of GFortran 4.5, and exists here
2 only for backwards compatibility. */
4 #include "libgfortran.h"
6 /* The main Fortran program actually is a function, called MAIN__.
7 We call it from the main() function in this file. */
10 /* Main procedure for fortran programs. All we do is set up the environment
11 for the Fortran program. */
13 main (int argc
, char *argv
[])
15 /* Set up the runtime environment. */
16 set_args (argc
, argv
);
18 /* Call the Fortran main program. Internally this is a function