g77 is supposed to allow the opening of files with LUN's = [1 2^31-1];
however, the following program will core dump with n>99....
program test
n=100
open(unit=n,status='unknown')
close(n,status='delete')
stop
end
Rob