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

struct Library *VektorialBase = NULL;
extern unsigned long _VektorialBaseVer;

void _INIT_5_VektorialBase()
{
  if (!(VektorialBase = OpenLibrary("vektorial.library",_VektorialBaseVer)))
    exit(20);
}

void _EXIT_5_VektorialBase()
{
  if (VektorialBase)
    CloseLibrary(VektorialBase);
}
