home *** CD-ROM | disk | FTP | other *** search
-
- /* 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. */
-
- void chkabort(void)
- {
- return;
- }
-
-