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

struct Library *IconBase = NULL;
extern unsigned long _IconBaseVer;

void _INIT_5_IconBase()
{
  if (!(IconBase = OpenLibrary("icon.library",_IconBaseVer)))
    exit(20);
}

void _EXIT_5_IconBase()
{
  if (IconBase)
    CloseLibrary(IconBase);
}
