/*****************************************************************************
* Default fatal error handler for the irit parser.			     *
*									     *
* Written by:  Gershon Elber				Ver 0.2, April 1993  *
*****************************************************************************/

#include <stdio.h>
#include "irit_sm.h"
#include "iritprsr.h"
#include "allocate.h"
#include "attribut.h"

/*****************************************************************************
* Trap Irit Parser errors right here.					     *
*****************************************************************************/
void IritPrsrFatalError(char *Msg)
{
    fprintf(stderr, "IP: %s\n", Msg);

    exit(-1);
}
