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

struct Library *I2C_Base = NULL;
extern unsigned long _I2C_BaseVer;

void _INIT_5_I2C_Base()
{
  if (!(I2C_Base = OpenLibrary("i2c.library",_I2C_BaseVer)))
    exit(20);
}

void _EXIT_5_I2C_Base()
{
  if (I2C_Base)
    CloseLibrary(I2C_Base);
}
