***************************************************************** * * * Correspondence to VS FORTRAN * * ============================ * * * ***************************************************************** * * * VS FORTRAN UNIX * * ========== ==== * * * * * * Unit Number * * =========== * * * * open(unit=3,..... open(unit=3,..... * * * * or or * * * * open(3,..... open(3,..... * * * * * * Err * * === * * * * open(....,err=99,.. open(....,err=99,.. * * * * * * Status * * ====== * * * * open(....,status='new',... open(....,status='new',... * * * * * * Iostat * * ====== * * * * open(....,iostat=ios,... open(....,iostat=ios,... * * * * * * File * * ==== * * * * open(9,file='/out file a',.. open(9,file='out.file',.. * * * * open(9,file='ddname',... open(9,file='ddname',..... * * * * plus CMS command plus shell command * * * * filedef ddname disk out file a ln -s out.file ddname * * * * * * Access * * ====== * * * * open(....,access='direct',.. open(..,access='direct',.. * * * * filedef 9 disk out file a (disp mod open(9,access='append', * * file='out.file') * * * * Blank * * ===== * * * * open(....,blank='null',... open(....,blank='null',... * * * * If an open statement for Whether an open statement * * a given unit is not issued, for a given unit is issued * * the default for blank is zero; or not the default for * * if an open statement is issued, blank is null. * * the default for blank is null. * * * * * * Form * * ==== * * * * open(....,form='unformatted', open(....,form='unformatted', * * * * VS FORTRAN recognizes carriage UNIX FORTRAN does not recog- * * control characters by default. nize carriage control char- * * acters by default. Carr- * * iage control can be implemen- * * ted by making the output file * * a print file: * * * * open(....,form='print',... * * * * Recl * * ==== * * * * open(..,access='direct', open(..,access='direct', * * recl=70,... recl=70,... * * * * recl = the number of recl = the number of * * bytes/record bytes/record unless the * * compiler option, -xld is * * used in which case recl is * * the number of words/record * * * *****************************************************************