home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / MARK_WC2.LZH / INCLUDE / SETJMP.H < prev    next >
Text File  |  1988-04-27  |  354b  |  16 lines

  1. /*
  2.  * setjmp.h -- structure for setjmp environment.
  3.  *
  4.  * Copyright (c) 1986-1987, Mark Williams Company, Chicago
  5.  * This file and its contents may not be copied or distributed
  6.  * without permission.
  7.  */
  8.  
  9. /*
  10.  * Structure for a setjmp environment.
  11.  * The pc, d3-d7, and a3-a7 are saved.
  12.  */
  13. typedef    long    jmp_buf[11];
  14.  
  15. /* End of setjmp.h */
  16.