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

struct Library *NIPCBase = NULL;
extern unsigned long _NIPCBaseVer;

void _INIT_5_NIPCBase()
{
  if (!(NIPCBase = OpenLibrary("nipc.library",_NIPCBaseVer)))
    exit(20);
}

void _EXIT_5_NIPCBase()
{
  if (NIPCBase)
    CloseLibrary(NIPCBase);
}
