blob: 390a0c7482bfcc8c0262a300dd12f45b1201ffa1 [file] [log] [blame]
module mm2b
use mm2a
implicit none
private
public :: callget5
contains
function callget5() result(ret)
implicit none
INTEGER :: ret
ret = get5()
end function callget5
end module mm2b