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

struct Library *RTGExtraBase = NULL;
extern unsigned long _RTGExtraBaseVer;

void _INIT_5_RTGExtraBase()
{
  if (!(RTGExtraBase = OpenLibrary("rtgextra.library",_RTGExtraBaseVer)))
    exit(20);
}

void _EXIT_5_RTGExtraBase()
{
  if (RTGExtraBase)
    CloseLibrary(RTGExtraBase);
}
