FORTRAN STOP

I got the message “FORTRAN STOP” whenever a FORTRAN program terminated. I wrote a program using hundreds subroutines, I got hundreds of “FORTRAN STOP” messages on the screen when my program finished. This is a bit annoying. Does any body know how to suppress this message when a program terminates?

Thanks.

Setting the NO_STOP_MESSAGE environment variable turns off the “FORTRAN STOP” message. You can also replace “STOP” in your programs with “CALL EXIT” which will silently exit your program.