home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
spoc88
/
cflt20
/
sigtest.c
< prev
next >
Wrap
Text File
|
1988-04-15
|
432b
|
18 lines
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
extern jmp_buf jump1;
void cdecl fphandler(int sig)
{
fprintf(stderr,"Floating point error.\n");
/* clean off the chip */
_fpreset();
/* reinstall the exception handler */
signal(SIGFPE,fphandler);
/* jump to a safe place */
longjmp(jump1);
}