home *** CD-ROM | disk | FTP | other *** search
/ back2roots/padua / padua.7z / padua / uucp / uupoll068.lha / misc / uupoll067.lha / src / break.c next >
Encoding:
Text File  |  1992-07-16  |  296 b   |  19 lines

  1.  
  2. /*    Disable Lattice CTRL-C handling by replacing the standard library
  3.     function which handles the ctrl-c break situation.    */
  4.  
  5. int CXBRK(void)
  6. {
  7.     return (0);
  8. }
  9.  
  10.  
  11. /*    Disable Really! To be sure we replace also the standard library
  12.     function for abort checking.    */
  13.  
  14. void chkabort(void)
  15. {
  16.     return;
  17. }
  18.  
  19.