hi, I have problem with the debugger. i wrote program in *.for and debugged with debug win 32. The debugger was not able to recognize the open statement. The following subroutine is called by my program.
subroutine gtwndo(cmd) character 80 cmd integer ird ird=31 open(unit=ird,file='fil',status='old') read(ird,)cmd close(ird) return end
The debugger recognises ird=31 and then steps to read statement rather than open statement.
Any help on this is much appreciated. thanks in advance.