| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(c_ptr), | value | :: | c_pt | |||
| real(kind=dp), | value | :: | B | |||
| real(kind=dp), | value | :: | St |
function critical_temperature_not_implemented(c_pt,B,St) result(ret_val) bind(C) type(c_ptr), value :: c_pt real(dp), value :: B,St real(dp) :: ret_val ret_val=0.0_dp if(.false.) print*,c_associated(c_pt),B,St error stop 'critical_temperature - not implemented' end function critical_temperature_not_implemented