home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional Developers Kit 1992 November / Disc01 / Disc01.mdf / cppbeta / incla / setjmp.h__ / SETJMP.H
Encoding:
C/C++ Source or Header  |  1992-09-27  |  1.5 KB  |  45 lines

  1. #ifndef __setjmp_h
  2.    #define __setjmp_h
  3.  
  4.    #pragma info( none )
  5.    #ifndef __CHKHDR__
  6.       #pragma info( none )
  7.    #endif
  8.    #pragma info( restore )
  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 Set/2 Beta Version                                        */
  20.    /*  Copyright (C) International Business Machines Corp., 1991,1992  */
  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.    #pragma info( none )
  39.    #ifndef __CHKHDR__
  40.       #pragma info( restore )
  41.    #endif
  42.    #pragma info( restore )
  43.  
  44. #endif
  45.