/* 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;
{
	fprintf(STDERR,"%s \n",str);
	exit(erc);
}