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

struct Library *FifoBase = NULL;
extern unsigned long _FifoBaseVer;

void _INIT_5_FifoBase()
{
  if (!(FifoBase = OpenLibrary("fifo.library",_FifoBaseVer)))
    exit(20);
}

void _EXIT_5_FifoBase()
{
  if (FifoBase)
    CloseLibrary(FifoBase);
}
