home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / unixlib / clib / h / setjmp < prev    next >
Encoding:
Text File  |  1992-07-21  |  180 b   |  12 lines

  1. /* setjmp.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __SETJMP_H 
  4. #define __SETJMP_H
  5.  
  6. typedef int    jmp_buf[21];
  7.  
  8. extern    int    setjmp(jmp_buf);
  9. extern    void    longjmp(jmp_buf,int);
  10.  
  11. #endif
  12.