home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tlint1_0.zip / tlint1_0 / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1995-11-08  |  227b  |  16 lines

  1. /*
  2.  * Copyright (c) 1995, by Thinkage Ltd.
  3.  *
  4.  * setjmp.h - Definitions for non-local goto's.
  5.  *
  6.  */
  7.  
  8. #ifndef _D_SETJMP
  9. #    define    _D_SETJMP
  10. #    pragma idempotent
  11. #    protoset setjmp
  12.  
  13.     typedef int jmp_buf[2];
  14.  
  15. #endif /* _D_SETJMP */
  16.