#include <exec/libraries.h>
#include <proto/exec.h>

struct Library *RTGMasterBase = NULL;
extern unsigned long _RTGMasterBaseVer;

void _INIT_5_RTGMasterBase()
{
  if (!(RTGMasterBase = OpenLibrary("rtgmaster.library",_RTGMasterBaseVer)))
    exit(20);
}

void _EXIT_5_RTGMasterBase()
{
  if (RTGMasterBase)
    CloseLibrary(RTGMasterBase);
}
