home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / CLIB1.ZIP / SIGDATA.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.3 KB  |  24 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. /*|                                                              |*/
  12. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  13. /*|                                                              |*/
  14. /*|                                                              |*/
  15. /*|     Copyright (c) 1987,1988,1990 by Borland International    |*/
  16. /*|     All Rights Reserved.                                     |*/
  17. /*|                                                              |*/
  18. /*[]------------------------------------------------------------[]*/
  19.  
  20. typedef void (*CatcherPTR)(); /* Cleaner catcher declaration */
  21.  
  22. CatcherPTR (*__SignalPtr)();
  23.  
  24.