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

struct Library *CCLibBase = NULL;
extern unsigned long _CCLibBaseVer;

void _INIT_5_CCLibBase()
{
  if (!(CCLibBase = OpenLibrary("cclib.library",_CCLibBaseVer)))
    exit(20);
}

void _EXIT_5_CCLibBase()
{
  if (CCLibBase)
    CloseLibrary(CCLibBase);
}
