Visible to Intel only — GUID: GUID-7E9781B3-43F6-4325-AB6B-22FF95E2B2DF
Visible to Intel only — GUID: GUID-7E9781B3-43F6-4325-AB6B-22FF95E2B2DF
for_rtl_finish_
Run-Time Function: Cleans up the Fortran run-time environment; for example, flushing buffers and closing files. It also issues messages about floating-point exceptions, if any occur.
This routine should be called from a C main program; it is invoked by default from a Fortran main program.
result = for_rtl_finish_ ( )
The result is an I/O status value. For information on these status values, see Error Handling: Using the IOSTAT Value and Fortran Exit Codes.
To initialize the Fortran run-time environment, use function for_rtl_init_ .
Consider the following C code:
int io_status;
int for_rtl_finish_ ( );
io_status = for_rtl_finish_ ( );