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

struct Library *CardBase = NULL;
extern unsigned long _CardBaseVer;

void _INIT_5_CardBase()
{
  if (!(CardBase = OpenLibrary("cards.library",_CardBaseVer)))
    exit(20);
}

void _EXIT_5_CardBase()
{
  if (CardBase)
    CloseLibrary(CardBase);
}
