_gfortran_set_record_marker
— Set length of record markers ¶_gfortran_set_record_marker
sets the length of record markers
for unformatted files.
void _gfortran_set_record_marker (int val)
val | Length of the record marker; valid values are 4 and 8. Default is 4. |
int main (int argc, char *argv[]) { /* Initialize libgfortran. */ _gfortran_set_args (argc, argv); _gfortran_set_record_marker (8); return 0; }