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

struct Library *AccountsBase = NULL;
extern unsigned long _AccountsBaseVer;

void _INIT_5_AccountsBase()
{
  if (!(AccountsBase = OpenLibrary("accounts.library",_AccountsBaseVer)))
    exit(20);
}

void _EXIT_5_AccountsBase()
{
  if (AccountsBase)
    CloseLibrary(AccountsBase);
}
