This commit is contained in:
2024-04-19 19:51:52 +03:00
parent d1e1643f8a
commit 7393489332
24 changed files with 1337 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
!c=========================================================================
subroutine deletefile(filename,status)
!c-------------------------------------------------------------------------
!c delete fits file
!c-------------------------------------------------------------------------
implicit none
integer status
character*(*) filename
integer access,i,unlink
if(access(filename,'w').eq.0) then
i=unlink(filename)
endif
return
end