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

struct Library *HBBSNodeBase = NULL;
extern unsigned long _HBBSNodeBaseVer;

void _INIT_5_HBBSNodeBase()
{
  if (!(HBBSNodeBase = OpenLibrary("HBBSNode.library",_HBBSNodeBaseVer)))
    exit(20);
}

void _EXIT_5_HBBSNodeBase()
{
  if (HBBSNodeBase)
    CloseLibrary(HBBSNodeBase);
}
