Update my e-mail address for my new employer.
[official-gcc.git] / libgfortran / fmain.c
blob1d6b45e111d7a047877d1402de199af159c3ea35
1 #include "libgfortran.h"
3 /* The main Fortran program actually is a function, called MAIN__.
4 We call it from the main() function in this file. */
5 void MAIN__ (void);
7 /* Main procedure for fortran programs. All we do is set up the environment
8 for the Fortran program. */
9 int
10 main (int argc, char *argv[])
12 /* Store the path of the executable file. */
13 store_exe_path (argv[0]);
15 /* Set up the runtime environment. */
16 set_args (argc, argv);
19 /* Call the Fortran main program. Internally this is a function
20 called MAIN__ */
21 MAIN__ ();
23 /* Bye-bye! */
24 return 0;