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

struct Library *IdentifyBase = NULL;
extern unsigned long _IdentifyBaseVer;

void _INIT_5_IdentifyBase()
{
  if (!(IdentifyBase = OpenLibrary("identify.library",_IdentifyBaseVer)))
    exit(20);
}

void _EXIT_5_IdentifyBase()
{
  if (IdentifyBase)
    CloseLibrary(IdentifyBase);
}
