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

struct Library *glutBase = NULL;
extern unsigned long _glutBaseVer;

void _INIT_5_glutBase()
{
  if (!(glutBase = OpenLibrary("glut.library",_glutBaseVer)))
    exit(20);
}

void _EXIT_5_glutBase()
{
  if (glutBase)
    CloseLibrary(glutBase);
}
