C Copyright 1995, Columbia University, all rights reserved. C Permission is granted to utilize and disseminate this code or C document without charge, provided that (1) this copyright notice is C not removed, and (2) all changes made by other than members of the C MacroModel Development Group at Columbia University are, if further C disseminated, (a) noted as such; for example, by means of source-code C comment lines, and (b) communicated back to the author for possible C inclusion in subsequent versions. CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC C *** $RCSfile: fout.f,v $ C *** $Revision: 1.5 $ C *** $Date: 1996/01/24 16:43:51 $ CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC SUBROUTINE FLINE_MMIO( IUNIT, LINE, LINE_LEN ) IMPLICIT NONE INTEGER IUNIT CHARACTER*(*) LINE INTEGER LINE_LEN WRITE( IUNIT, '(A)' )LINE(1:LINE_LEN) END CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC SUBROUTINE FSKIP_MMIO( IUNIT ) IMPLICIT NONE INTEGER IUNIT WRITE( IUNIT, '()' ) END CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC