mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
14 lines
310 B
Fortran
14 lines
310 B
Fortran
|
!----------------------------------------------------- rfile3a
|
||
|
subroutine rfile3a(infile,ibuf,n,ierr)
|
||
|
|
||
|
character*11 infile
|
||
|
integer*1 ibuf(n)
|
||
|
|
||
|
open(10,file=infile,form='binary',status='old',err=998)
|
||
|
read(10,end=998) ibuf
|
||
|
ierr=0
|
||
|
go to 999
|
||
|
998 ierr=1002
|
||
|
999 return
|
||
|
end subroutine rfile3a
|