/* err.c by Michael Hanson */
/* you may use this, but not for profit, and give me credit */ 
/* error printer for c */

error(str,erc)
char *str;
int erc;
{
	fputs(str,STDERR);
	fputs("\n",STDERR);
	exit(erc);
}