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

struct Library *MiscBase = NULL;
extern unsigned long _MiscBaseVer;

void _INIT_5_MiscBase()
{
  if (!(MiscBase = OpenLibrary("misc.library",_MiscBaseVer)))
    exit(20);
}

void _EXIT_5_MiscBase()
{
  if (MiscBase)
    CloseLibrary(MiscBase);
}
