home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / INCLUDE / UNEXPECT.H < prev    next >
C/C++ Source or Header  |  1993-09-17  |  1KB  |  28 lines

  1. #ifndef __UNEXPECTED_H
  2.    #define __UNEXPECTED_H
  3.  
  4.    /********************************************************************/
  5.    /*  <unexpect.h> header file                                        */
  6.    /*                                                                  */
  7.    /*  Licensed Materials - Property of IBM                            */
  8.    /*                                                                  */
  9.    /*  IBM C/C++ Tools Version 2.01                                    */
  10.    /*  Copyright (C) International Business Machines Corp., 1992, 1993 */
  11.    /*  All rights reserved                                             */
  12.    /*                                                                  */
  13.    /*  US Government Users Restricted Rights -                         */
  14.    /*  Use, duplication, or disclosure restricted                      */
  15.    /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  16.    /*                                                                  */
  17.    /********************************************************************/
  18.  
  19.    extern void (*set_unexpected (void(*)()))();
  20.    extern void __unexpected();
  21.  
  22.    inline void unexpected()
  23.    {
  24.        __unexpected();
  25.    }
  26.  
  27. #endif /* __UNEXPECTED_H */
  28.