
; /*     $VER: LastCheck 1.3 (01.07.97)       */
; /*                                          */
; /*  This script is part of MailCheck v1.3 	*/
; /*    and may not be modified or copied     */
; /*  without the authors written permission  */
; /*                                          */
; /*   ©1997 DCS Softwate by Robert Wilson    */

if not exists libs:reqtools.library
  echo "LastCheck requires reqtools.library"
  skip END
endif

if not exists libs:rexxreqtools.library
  echo "LastCheck requires rexxreqtools.library"
  skip END
endif

if not exists libs:rexxtricks.library
  echo "LastCheck requires rexxtricks.library"
  skip END
endif

lab START

if $MCLastRun eq 1
  skip END
endif

setenv MCLastRun 1

sys:rexxc/rx MailCheck:Rexx/LastCheck.rexx

setenv MCLastRun 0

lab END

quit
