blob: 6c63dad89a3260a6caea73eaccb413e6d8356d85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
subroutine fcopy (in, out)
integer in, out
integer line (128)
integer getlin
23000 if (.not.(getlin (line, in) .ne. -1))goto 23001
call putlin (line, out)
goto 23000
23001 continue
return
end
|