home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 1.ddi / CLIBSRC.ZIP / SIGDATA.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  858 b   |  23 lines

  1. /*----------------------------------------------------------------------*
  2.  * filename - sigdata.c                                                 *
  3.  *                                                                      *
  4.  * external function pointers to signal()                               *
  5.  * These are filled in with the actual address of signal()              *
  6.  * at runtime.  This is needed to keep the signal functions from being  *
  7.  * dragged in by the fperr() routine.                                   *
  8.  *----------------------------------------------------------------------*/
  9.  
  10. /*
  11.  *      C/C++ Run Time Library - Version 5.0
  12.  *
  13.  *      Copyright (c) 1987, 1992 by Borland International
  14.  *      All Rights Reserved.
  15.  *
  16.  */
  17.  
  18.  
  19. typedef void (*CatcherPTR)(); /* Cleaner catcher declaration */
  20.  
  21. CatcherPTR (*__SignalPtr)();
  22.  
  23.