/*
 *
 *      Copyright (C) 1989 by the Massachusetts Institute of Technology
 *      Developed by the MIT Student Information Processing Board (SIPB).
 *      For copying information, see the file mit-copyright.h in this release.
 *
 */

#ifndef lint
#ifndef SABER
static char *RCSid = "$Header: /afs/sipb.mit.edu/project/discuss/.cvsroot/discuss/source/dsgrep/regerror.c,v 1.2 1992/06/26 02:15:26 raeburn Exp $";
#endif
#endif

#include <stdio.h>
void regerror(msg)
     char *msg;
{
  fprintf(stderr,"dsgrep: Error in regular expression %s\n",msg);
  exit(1);
}
