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

struct Library *SNDBase = NULL;
extern unsigned long _SNDBaseVer;

void _INIT_5_SNDBase()
{
  if (!(SNDBase = OpenLibrary("sound.library",_SNDBaseVer)))
    exit(20);
}

void _EXIT_5_SNDBase()
{
  if (SNDBase)
    CloseLibrary(SNDBase);
}
