Bob,

1. Check there is a valid return at the end of the include file. If not,
it throws the compiler out.

2. The initialisation code may not do what you expect .. in a named
common UV initializes all values to zero automatically, so your
UNASSIGNED(AVAR) may never get set.

eg.

>ED TEST.BP TEMP
4 lines long.
0001: COMMON /SOMETHING/ FIRST, SECOND
0002: IF UNASSIGNED(FIRST) THEN CRT "First Not Assigned"
0003: IF NOT(FIRST) THEN CRT "First is zero"
0004: CRT FIRST

>RUN TEST.BP TEMP
First is zero
0

Brian
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to