iso_fortran_env — standard intrinsic module
(The ',INTRINSIC ::' part is optional.)
Storage units are described by CHARACTER_STORAGE_SIZE and NUMERIC_STORAGE_SIZE.
I/O units are described by ERROR_UNIT, INPUT_UNIT and OUTPUT_UNIT.
The RECL= specifier for the INQUIRE and OPEN statements is described by FILE_STORAGE_SIZE.
IOSTAT= return values are described by IOSTAT_END and IOSTAT_EOR. These and many other IOSTAT= return values are provided by the intrinsic module F90_IOSTAT (except that it provides IOSTAT_EOF instead of IOSTAT_END).
INTEGER,PARAMETER :: character_storage_size = 8The size of a character storage unit in bits.
INTEGER,PARAMETER :: error_unit = 0The standard error reporting unit number.
INTEGER,PARAMETER :: file_storage_size = 8The size of a file storage unit (used by RECL= in OPEN and INQUIRE) in bits.
INTEGER,PARAMETER :: input_unit = 5The standard input unit number. This is the one used by READ with an asterisk ('*') unit.
INTEGER,PARAMETER :: iostat_end = -1The IOSTAT= return value for end of file.
INTEGER,PARAMETER :: iostat_eor = -2The IOSTAT= return value for end of record.
INTEGER,PARAMETER :: numeric_storage_size = BIT_SIZE(0)The size of a numeric storage unit in bits.
INTEGER,PARAMETER :: output_unit = 6The standard output unit number. This is the one used by PRINT, and by WRITE with an asterisk ('*') unit.
The source code for this module may be found in the NAG Fortran runtime library directory (usually /usr/local/lib/NAG_Fortran).
f90_iostat(3), nag_modules(3).
Please report any bugs found to ‘support@nag.co.uk’ or ‘support@nag.com’, along with any suggestions for improvements.
Malcolm Cohen, Nihon Numerical Algorithms Group KK, Tokyo, Japan.