Delete existing file.
c----------------------------------------------------------------------
subroutine sff_New(lu, filename, ierr)
c
c This routine just deletes the file indicated by filename. You need this
c as all WOpen routines refuse to replace an existing file. You will have
c to remove this file first and than open a new one.
c
c input:
c lu
logical file unit to use
for operation
c filename name of file to be deleted
c output:
c ierr will be 0 if operation was successfull
c
character filename*(*)
c
c----------------------------------------------------------------------