blob: bf7b2854b235ed006c5de3f4d3e300394ad7d513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module clp_constants
use iso_c_binding
implicit none
! The following definition is copied exactly from Coin_C_defines.h
#if COIN_BIG_INDEX==0
integer, parameter :: CoinBigIndex_t = c_int
#elif COIN_BIG_INDEX==1
integer, parameter :: CoinBigIndex_t = c_long
#else
integer, parameter :: CoinBigIndex_t = c_long_long
#endif
end module clp_constants
|