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

struct Library *JS_ToolsBase = NULL;
extern unsigned long _JS_ToolsBaseVer;

void _INIT_5_JS_ToolsBase()
{
  if (!(JS_ToolsBase = OpenLibrary("JS.library",_JS_ToolsBaseVer)))
    exit(20);
}

void _EXIT_5_JS_ToolsBase()
{
  if (JS_ToolsBase)
    CloseLibrary(JS_ToolsBase);
}
