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

struct Library *QueueBase = NULL;
extern unsigned long _QueueBaseVer;

void _INIT_5_QueueBase()
{
  if (!(QueueBase = OpenLibrary("queue.library",_QueueBaseVer)))
    exit(20);
}

void _EXIT_5_QueueBase()
{
  if (QueueBase)
    CloseLibrary(QueueBase);
}
