Sign in
qemu
/
meson
/
refs/heads/sharedwithrust
/
.
/
test cases
/
fortran
/
14 fortran links c
/
f_call_c.f90
blob: af1e79c8237ebd321bd4ad9783a363610aa9246f [
file
] [
log
] [
blame
]
implicit
none
interface
subroutine hello
()
bind
(
c
)
end
subroutine hello
end
interface
call hello
()
end
program