fortran/c interface problems?

Mike Fennessy fen at COLA.IGES.ORG
Mon Oct 16 13:57:31 EDT 2006


Or you can write it our in fortran without control words by either

open(1,file='outfile',form='unformatted',recordtype='stream')

which doesn't work on all machines (they don't recognize 'stream')

or

open(1,file='outfile',form='unformatted',access='direct',recl=RECL)

but the later requires the RECL in 4-byte words on some machines,
in bytes on others

-Mike



More information about the gradsusr mailing list