
/*	Disable Lattice CTRL-C handling by replacing the standard library
	function which handles the ctrl-c break situation.	*/

int CXBRK(void)
{
	return (0);
}


/*	Disable Really! To be sure we replace also the standard library
	function for abort checking.

int chkabort(void)
{
	return (0);
}

*/
