OSDN Git Service

PR libfortran/47883
[pf3gnuchains/gcc-fork.git] / libgfortran / fmain.c
index 397f17b..a99263c 100644 (file)
@@ -1,4 +1,6 @@
-#include "config.h"
+/* Note that this file is not used as of GFortran 4.5, and exists here
+   only for backwards compatibility.  */
+
 #include "libgfortran.h"
 
 /* The main Fortran program actually is a function, called MAIN__.
@@ -10,13 +12,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__ ();