#ifndef RTFATAL_H
#define RTFATAL_H

/******************************************************************************/
/******************************************************************************/
/*****************     Copyright 2004, 2005 Chronolytics Inc.   ***************/
/*****************     All Right Reserved                       ***************/
/******************************************************************************/
/******************************************************************************/

static volatile const char __attribute__ ((unused)) rcsid_RTFATAL_H[] = "$Id: RTFatal.h,v 1.3 2005/06/29 15:53:29 dave Exp $";

extern void RTFatal(const char *errstring);
  /* 
  ** These are pushed down usually by Init routines and 
  ** popped off and executed upon an fatal condition 
  */
void RTFatal_Register(void (*fatal_callback_handler)());

#endif /* RTFATAL_H */

