home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / SETJMP.H < prev    next >
C/C++ Source or Header  |  1990-06-26  |  297b  |  19 lines

  1. /*
  2.  * setjmp.h - declarations for non-local jumps
  3.  *
  4.  * Started 11/11/89 Alex G. Kiernan
  5.  *
  6.  * Copyright (c) 1989 HiSoft
  7.  */
  8.  
  9. #ifndef _SETJMP_H
  10. #define _SETJMP_H
  11.  
  12. typedef long jmp_buf[15];
  13.  
  14. int __setjmp(jmp_buf);
  15. void longjmp(jmp_buf,int);
  16.  
  17. #define setjmp(x)    __setjmp(x)
  18. #endif
  19.