home *** CD-ROM | disk | FTP | other *** search
- /* we want results! Otherwise, we wouldn't get anything from RESULT */
- options results
-
- /* Need to make sure that stdtail.avm is also included */
- signal on halt
- signal on novalue
- signal on syntax
- signal on break_c
-
- /* needed for some of the functions we use */
- call addlib("rexxsupport.library", 0, -30, 0)
-
- /* a higher than normal priority since calls are important to us :) */
- call pragma('priority', 1)
-
- /* ensure that commands are directed to the correct server */
- parse arg servername .
- address value servername
-
-