mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-03 16:01:18 -05:00
13 lines
221 B
Fortran
13 lines
221 B
Fortran
|
|
||
|
!----------------------------------------------------- rfile
|
||
|
subroutine rfile(lu,ibuf,n,ierr)
|
||
|
|
||
|
integer*1 ibuf(n)
|
||
|
|
||
|
read(lu,end=998) ibuf
|
||
|
ierr=0
|
||
|
go to 999
|
||
|
998 ierr=1002
|
||
|
999 return
|
||
|
end subroutine rfile
|