OSDN Git Service

* fmain.c (main): Don't PREFIX set_args.
[pf3gnuchains/gcc-fork.git] / libgfortran / fmain.c
index 397f17b..c59f319 100644 (file)
@@ -1,4 +1,3 @@
-#include "config.h"
 #include "libgfortran.h"
 
 /* The main Fortran program actually is a function, called MAIN__.
@@ -10,13 +9,9 @@ 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);
 
-
   /* Call the Fortran main program.  Internally this is a function
      called MAIN__ */
   MAIN__ ();