blob: b3f70a7ca3e26b018e8a7cac42a89630f7a5b785 [file] [log] [blame]
program main
implicit none
interface
subroutine hello() bind (c)
end subroutine hello
end interface
call hello()
end program