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

struct Library *ArpBase = NULL;
extern unsigned long _ArpBaseVer;

void _INIT_5_ArpBase()
{
  if (!(ArpBase = OpenLibrary("arp.library",_ArpBaseVer)))
    exit(20);
}

void _EXIT_5_ArpBase()
{
  if (ArpBase)
    CloseLibrary(ArpBase);
}
