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

struct Library *XoutBase = NULL;
extern unsigned long _XoutBaseVer;

void _INIT_5_XoutBase()
{
  if (!(XoutBase = OpenLibrary("xout.library",_XoutBaseVer)))
    exit(20);
}

void _EXIT_5_XoutBase()
{
  if (XoutBase)
    CloseLibrary(XoutBase);
}
