WSJT-X/fstatqqq.f90
Joe Taylor 99f206ff42 Additional needed files
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@336 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2007-01-11 21:48:10 +00:00

15 lines
181 B
Fortran

subroutine fstatqqq(lu,istat,ierr)
#ifdef Win32
use dfport
#endif
#ifdef Win32
ierr=fstat(lu,istat)
#else
call fstat(lu,istat,ierr)
#endif
return
end subroutine fstatqqq