diff options
Diffstat (limited to 'Modules/FortranCInterface/call_mod.f90')
-rw-r--r-- | Modules/FortranCInterface/call_mod.f90 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Modules/FortranCInterface/call_mod.f90 b/Modules/FortranCInterface/call_mod.f90 new file mode 100644 index 0000000..9b6af64 --- /dev/null +++ b/Modules/FortranCInterface/call_mod.f90 @@ -0,0 +1,6 @@ +subroutine call_mod + use mymodule + use my_module + call mysub() + call my_sub() +end subroutine call_mod |