home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / INCLUDE / SETJMP.H < prev    next >
Text File  |  1993-09-17  |  2KB  |  45 lines

  1. #pragma info( none )
  2. #ifndef __CHKHDR__
  3.    #pragma info( none )
  4. #endif
  5. #pragma info( restore )
  6.  
  7. #ifndef __setjmp_h
  8.    #define __setjmp_h
  9.  
  10.    #ifdef __cplusplus
  11.       extern "C" {
  12.    #endif
  13.  
  14.    /********************************************************************/
  15.    /*  <setjmp.h> header file                                          */
  16.    /*                                                                  */
  17.    /*  Licensed Materials - Property of IBM                            */
  18.    /*                                                                  */
  19.    /*  IBM C/C++ Tools Version 2.01                                    */
  20.    /*  Copyright (C) International Business Machines Corp., 1991,1993  */
  21.    /*  All rights reserved                                             */
  22.    /*                                                                  */
  23.    /*  US Government Users Restricted Rights -                         */
  24.    /*  Use, duplication, or disclosure restricted                      */
  25.    /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  26.    /*                                                                  */
  27.    /********************************************************************/
  28.  
  29.    typedef int jmp_buf[8];
  30.  
  31.    void _Optlink longjmp( jmp_buf, int );
  32.    int  _Builtin setjmp( jmp_buf );
  33.  
  34.    #ifdef __cplusplus
  35.       }
  36.    #endif
  37.  
  38. #endif
  39.  
  40. #pragma info( none )
  41. #ifndef __CHKHDR__
  42.    #pragma info( restore )
  43. #endif
  44. #pragma info( restore )
  45.