Skip to content

Commit

Permalink
Update interface of prif_end_team based on latest design doc
Browse files Browse the repository at this point in the history
choices.
  • Loading branch information
ktras committed Dec 13, 2023
1 parent b71366a commit 153e652
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/caffeine/team_type_m.f90
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ module subroutine prif_change_team(team, stat, errmsg, errmsg_alloc)
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine

module subroutine prif_end_team()
module subroutine prif_end_team(stat, errmsg, errmsg_alloc)
implicit none
integer(c_int), intent(out), optional :: stat
character(len=*), intent(inout), optional :: errmsg
character(len=:), intent(inout), allocatable, optional :: errmsg_alloc
end subroutine

end interface
Expand Down

0 comments on commit 153e652

Please sign in to comment.