home *** CD-ROM | disk | FTP | other *** search
- /*----------------------------------------------------------------------*
- * filename - sigdata.c *
- * *
- * external function pointers to signal() *
- * These are filled in with the actual address of signal() *
- * at runtime. This is needed to keep the signal functions from being *
- * dragged in by the fperr() routine. *
- *----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987,1988,1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- typedef void (*CatcherPTR)(); /* Cleaner catcher declaration */
-
- CatcherPTR (*__SignalPtr)();
-
-