home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / SIMTEL / HITECH-C / Z80V309.EXE / lha / SETJMP.H < prev    next >
Text File  |  1979-11-30  |  256b  |  19 lines

  1. #if    z80
  2. typedef    int    jmp_buf[4];
  3. #endif
  4.  
  5. #if    i8086
  6. typedef    int    jmp_buf[8];
  7. #endif
  8.  
  9. #if    i8096
  10. typedef    int    jmp_buf[10];
  11. #endif
  12.  
  13. #if    m68k
  14. typedef    int    jmp_buf[10];
  15. #endif
  16.  
  17. extern    int    setjmp(jmp_buf);
  18. extern void    longjmp(jmp_buf, int);
  19.