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

struct Library *STRBase = NULL;
extern unsigned long _STRBaseVer;

void _INIT_5_STRBase()
{
  if (!(STRBase = OpenLibrary("strings.library",_STRBaseVer)))
    exit(20);
}

void _EXIT_5_STRBase()
{
  if (STRBase)
    CloseLibrary(STRBase);
}
