diff --git a/fortran/src/include/math.f90 b/fortran/src/include/math.f90 index d1d3bd36..966b7663 100644 --- a/fortran/src/include/math.f90 +++ b/fortran/src/include/math.f90 @@ -20,7 +20,8 @@ pure integer(i18t) function n_choose_r(n, r) result(answer) end if end function - pure integer(i18t) function n_choose_r_slow(n, r) result(answer) + integer(i18t) function n_choose_r_slow(n, r) result(answer) + integer, intent(in) :: n, r integer(i2t), allocatable :: factors(:) integer(i18t) :: tmp integer :: i, j