39 use netcdf,
only: nf90_noerr, nf90_del_att, nf90_global, nf90_enotindefine
44 character(len = *),
intent(in):: name
45 logical,
intent(out),
optional:: err
50 if (stat /= nf90_noerr)
goto 999
51 stat = nf90_del_att(ent%fileid, ent%varid, name=name)
52 if (stat == 0)
goto 999
53 if (stat /= nf90_enotindefine)
goto 999
55 if (stat /= nf90_noerr)
goto 999
57 stat = nf90_del_att(ent%fileid, nf90_global, name=name(2:))
59 stat = nf90_del_att(ent%fileid, ent%varid, name=name)
63 call storeerror(stat,
'GDNcVarPutAttrChar', err)