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

struct Library *PPCLibBase = NULL;
extern unsigned long _PPCLibBaseVer;

void _INIT_5_PPCLibBase()
{
  if (!(PPCLibBase = OpenLibrary("ppc.library",_PPCLibBaseVer)))
    exit(20);
}

void _EXIT_5_PPCLibBase()
{
  if (PPCLibBase)
    CloseLibrary(PPCLibBase);
}
