// Fatal error handling

#ifndef __ERROR_H
#define __ERROR_H

#include <stdio.h>
#include <stdarg.h>

// Fatal error handling. Exit the program with the given error message (using
// printf() style arguments). The ``debug'' versions trigger a core dump.

void ZFatalError (char *msg, ...);
void ZFatalDebug (char *msg, ...);


#endif
