mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
280c8344cd
Preparation for merging with the wsjtx project repository.
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
|