14 lines
176 B
C
14 lines
176 B
C
#ifdef FORTRAN_
|
|
#define FORNAME(x) x##_
|
|
#else
|
|
#define FORNAME(x) x
|
|
#endif
|
|
|
|
#ifdef LONG_FORTRAN_INT
|
|
#define FORINT
|
|
#define FINT long
|
|
#else
|
|
#undef FORINT
|
|
#define FINT int
|
|
#endif
|