home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixlib36d / clib / h / setjmp < prev    next >
Text File  |  1994-02-26  |  250b  |  20 lines

  1. /* setjmp.h (c) Copyright 1990 H.Rogers */
  2.  
  3. #ifndef __SETJMP_H 
  4. #define __SETJMP_H
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. typedef int    jmp_buf[23];
  11.  
  12. extern    int    setjmp(jmp_buf);
  13. extern    void    longjmp(jmp_buf,int);
  14.  
  15. #ifdef __cplusplus
  16.     }
  17. #endif
  18.  
  19. #endif
  20.