I seems that G77 is so well optimized that it closes the output file
*before* it writes the last lines into it. The faster the computer, the
more likely the error.

The workaround I found was to open files like this:

      open (unit=9, file='jollyfile.txt', status='unknown')
      close (unit=9, status='delete')
      open (unit=9, file='jollyfile.txt', status='new')

instead of the first line alone, when the program doesn't know if there
is already a jollyfile.txt file.

is there such a thing in G77 as C's "int fflush(FILE *)" which is used to ship out everything which rests in the internal buffer?

_______________________________________________
TeX-music mailing list
[email protected]
http://icking-music-archive.org/mailman/listinfo/tex-music

Reply via email to