mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
a1b595f6ab
for modern Fortran. (LT_LANG, _LT_LANG_DEFAULT_CONFIG, _LT_SYS_DYNAMIC_LINKER, _LT_SYS_HIDDEN_LIBDEPS): Adjusted. * tests/fcdemo-conf.test, tests/fcdemo-exec.test, tests/fcdemo-make.test, tests/fcdemo-shared.test, tests/fcdemo-static.test, tests/fcdemo/Makefile.am, tests/fcdemo/README, tests/fcdemo/configure.ac, tests/fcdemo/cprogram.c, tests/fcdemo/foo.h, tests/fcdemo/fooc.c, tests/fcdemo/foof.f90, tests/fcdemo/foof2.f90, tests/fcdemo/foof3.f90, tests/fcdemo/fprogram.f90: New tests for Fortran. * tests/convenience.at: Extended. * Makefile.am, configure.ac: Adjusted. * NEWS: Updated.
14 lines
367 B
Fortran
14 lines
367 B
Fortran
!
|
|
! This program is free software; you can redistribute it and/or
|
|
! modify it under the terms of the GNU General Public License
|
|
! as published by the Free Software Foundation; either version 2
|
|
! of the License, or (at your option) any later version.
|
|
!
|
|
subroutine fsubf(arg,res)
|
|
implicit none
|
|
integer arg,res
|
|
write(*,*) 'fsubf called'
|
|
res=arg*2
|
|
return
|
|
end
|