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

struct Library *BattClockBase = NULL;
extern unsigned long _BattClockBaseVer;

void _INIT_5_BattClockBase()
{
  if (!(BattClockBase = OpenLibrary("battclock.library",_BattClockBaseVer)))
    exit(20);
}

void _EXIT_5_BattClockBase()
{
  if (BattClockBase)
    CloseLibrary(BattClockBase);
}
