/* error.c - A simple error handler */

#include "error.h"

void error(int module, int class, int instance)
{
  abort();
}
