home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / amiga / utils / exp_iv / critical.c < prev    next >
Encoding:
Text File  |  1991-05-13  |  397 b   |  24 lines

  1. /* critical.c */
  2.  
  3. /* $Author: Espie $
  4.  * $Date: 91/04/30 00:34:54 $
  5.  * $Revision: 1.2 $
  6.  * $Log:    critical.c,v $
  7.  * Revision 1.2  91/04/30  00:34:54  Espie
  8.  * Stable version III.
  9.  * 
  10.  * Revision 1.1  91/04/24  15:27:47  Espie
  11.  * Initial revision
  12.  * 
  13.  */
  14.  
  15. /* handler to disable control c during critical sections.
  16.  * (used by the macros CRITICAL SECTION).
  17.  */
  18.  
  19. int nobreak(void)
  20.     {
  21.         return 0;
  22.     }
  23.  
  24.