diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-06-14 16:52:49 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2009-06-14 16:52:49 +0000 |
commit | fa10ccb27590ab46404d1b403217df6ea53e6ed2 (patch) | |
tree | 2be70e5cdc08149609b834dada208139b4302b3a /libgfortran/fmain.c | |
parent | 03bd2f1af7c1f2343940f6ca5409048ba16a2e4c (diff) | |
download | gcc-fa10ccb27590ab46404d1b403217df6ea53e6ed2.zip gcc-fa10ccb27590ab46404d1b403217df6ea53e6ed2.tar.gz gcc-fa10ccb27590ab46404d1b403217df6ea53e6ed2.tar.bz2 |
fmain.c (main): Don't PREFIX set_args.
* fmain.c (main): Don't PREFIX set_args.
* libgfortran.h (set_args): Use iexport_proto.
* runtime/main.c (set_args): Use iexport.
From-SVN: r148472
Diffstat (limited to 'libgfortran/fmain.c')
-rw-r--r-- | libgfortran/fmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/fmain.c b/libgfortran/fmain.c index 2e8ed88..c59f319 100644 --- a/libgfortran/fmain.c +++ b/libgfortran/fmain.c @@ -10,7 +10,7 @@ int main (int argc, char *argv[]) { /* Set up the runtime environment. */ - PREFIX(set_args) (argc, argv); + set_args (argc, argv); /* Call the Fortran main program. Internally this is a function called MAIN__ */ |