FNUM — File number function#

FNUM(UNIT)#

FNUM(UNIT) returns the POSIX file descriptor number corresponding to the open Fortran I/O unit UNIT.

Parameters:

UNIT – The type shall be INTEGER.

Returns:

The return value is of type INTEGER

Standard:

GNU extension

Class:

Function

Syntax:
RESULT = FNUM(UNIT)
Example:
program test_fnum
  integer :: i
  open (unit=10, status = "scratch")
  i = fnum(10)
  print *, i
  close (10)
end program test_fnum