[1541] in Athena Bugs
fsplit bug 6.0 RT release
daemon@ATHENA.MIT.EDU (Steve Ellis)
Fri Dec 16 09:46:03 1988
To: bugs@ATHENA.MIT.EDU
Date: Fri, 16 Dec 88 09:45:27 EST
From: Steve Ellis <ellis@ATHENA.MIT.EDU>
The fsplit does not function correctly on the RT. It should take a fortran
source file and split it into seperate files, 1 for each soubroutine and
function, where the filenames are the subroutine name. In the case that
the name already exists, fsplit should use zzzNNN.f. On the RT, the files
are always named "zzzNNN.f"
To duplicate: copy the following into file and run fsplit. On a vax you get
test1.f and test2.f. On the RT you get zzz000.f and zzz001.f.
c*********************************
c fsplit bug demo program
c*********************************
c
subroutine test1
stop
end
subroutine test2
stop
end