diff options
Diffstat (limited to 'libgfortran/fmain.c')
-rw-r--r-- | libgfortran/fmain.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libgfortran/fmain.c b/libgfortran/fmain.c index 1d6b45e..2e8ed88 100644 --- a/libgfortran/fmain.c +++ b/libgfortran/fmain.c @@ -9,12 +9,8 @@ void MAIN__ (void); int main (int argc, char *argv[]) { - /* Store the path of the executable file. */ - store_exe_path (argv[0]); - /* Set up the runtime environment. */ - set_args (argc, argv); - + PREFIX(set_args) (argc, argv); /* Call the Fortran main program. Internally this is a function called MAIN__ */ |