blob: 53ac5b5068410a35dbdb3f7762910a81e6eb6a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
!%f90
module foobar ! in
interface ! in :foobar
subroutine foo(a) ! in :foobar:foo.f
integer intent(inout) :: a
end subroutine foo
function bar(a,b) ! in :foobar:bar.f
integer :: a
integer :: b
integer :: bar
end function bar
end interface
end module foobar
! This file was auto-generated with f2py (version:0.95).
! See http://cens.ioc.ee/projects/f2py2e/
|