home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__lib / setjmp.h < prev    next >
C/C++ Source or Header  |  1993-07-23  |  240b  |  18 lines

  1. #ifndef _setjmp_h
  2. #pragma once
  3.    
  4. #if vax
  5. static const int _JBLEN = 10;
  6. #endif
  7.    
  8. #if sun
  9. static const int _JBLEN = 15;
  10. #endif
  11.    
  12. typedef int jmp_buf[_JBLEN];
  13.    
  14. extern int setjmp(jmp_buf);
  15. extern void longjmp(jmp_buf, int);
  16.    
  17. #endif
  18.