
/*
** error.c -- display message str and abort
*/
error(str) char *str; {
  fputs(str, stderr);
  fputc('\n', stderr);
  abort(7);
  }
                                                                                                                                                                                                                                                                                                                                                                              