I believe this is a bug in g77 on this machine. It is
claiming that these two statements are illegal:
implicit double precision(a-h,o-z)
LOGICAL OUTLAB
However my understanding is that 'implicit' defines a
default, not a rule for all variables.
First, I would see if there is a compiler upgrade
available. Failing that, a workaround for this machine
be to exclude 'o' from the range:
implicit double precision(a-h,p-z)
Bill Ross
__________________________________________________
Do You Yahoo!?
Yahoo! Greetings - send holiday greetings for Easter, Passover
http://greetings.yahoo.com/
Received on Sun Mar 31 2002 - 23:30:24 PST