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

struct Library *DateBase = NULL;
extern unsigned long _DateBaseVer;

void _INIT_5_DateBase()
{
  if (!(DateBase = OpenLibrary("date.library",_DateBaseVer)))
    exit(20);
}

void _EXIT_5_DateBase()
{
  if (DateBase)
    CloseLibrary(DateBase);
}
