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

struct Library *VMMBase = NULL;
extern unsigned long _VMMBaseVer;

void _INIT_5_VMMBase()
{
  if (!(VMMBase = OpenLibrary("vmm.library",_VMMBaseVer)))
    exit(20);
}

void _EXIT_5_VMMBase()
{
  if (VMMBase)
    CloseLibrary(VMMBase);
}
