#ARP-HELP
Well, it looks like you have some sort of a problem with
rexxarplib.library itself. Some possibilities are that it is not in
LIBS:, or that its name is incorrect, or has the wrong case.
rexxarplib.library needs to be in LIBS:, as opposed to just any old
directory called LIBS.
One way to check to see if you are actually loading rexxarplib.loibrary is to
change the line…
call addlib('rexxarp.library',0,-30,0)
to
say addlib('rexxarp.library',0,-30,0)
The result (printed by the SAY command) should be non-zero. If it is zero, then
you are not opening rexxarplib.library, and it on;y remains to find out why.
-larry