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

struct Library *SysBase = NULL;
extern unsigned long _SysBaseVer;

void _INIT_5_SysBase()
{
  if (!(SysBase = OpenLibrary("exec.library",_SysBaseVer)))
    exit(20);
}

void _EXIT_5_SysBase()
{
  if (SysBase)
    CloseLibrary(SysBase);
}
