NCEPLIBS-bufr  11.5.0
 All Data Structures Files Functions Variables Pages
moda_ivttmp.F
1  MODULE moda_ivttmp
2 
3 #ifndef MAXJL_H
4 #define MAXJL_H
5  USE modv_maxjl
6 #endif
7 
8 #ifdef DYNAMIC_ALLOCATION
9  CHARACTER*10, ALLOCATABLE :: ttmp(:)
10  INTEGER, ALLOCATABLE :: itmp(:)
11  REAL*8, ALLOCATABLE :: vtmp(:)
12 #else
13  CHARACTER*10 :: ttmp(maxjl)
14  INTEGER :: itmp(maxjl)
15  REAL*8 :: vtmp(maxjl)
16 #endif
17 
18  END MODULE
This module declares and initializes the MAXJL variable.
Definition: modv_MAXJL.F:16