mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
c4a1997191
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@2464 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
15 lines
295 B
Fortran
15 lines
295 B
Fortran
subroutine rfile3a(infile,ibuf,n,fcenter,ierr)
|
|
|
|
character*(*) infile
|
|
integer*8 ibuf(n)
|
|
real*8 fcenter
|
|
|
|
open(10,file=infile,access='stream',status='old',err=998)
|
|
read(10,end=998) (ibuf(i),i=1,n/8),fcenter
|
|
ierr=0
|
|
go to 999
|
|
998 ierr=1002
|
|
999 close(10)
|
|
return
|
|
end subroutine rfile3a
|