From e85da651dd8141039efeca243907a4d91755b527 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 20 Oct 1997 23:50:01 +0000 Subject: Some patches to Lee Busby's fpectl mods that accidentally didn't make it into 1.5a4. --- Python/pyfpe.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/pyfpe.c') diff --git a/Python/pyfpe.c b/Python/pyfpe.c index a1de1af6f1..6048cdefc1 100644 --- a/Python/pyfpe.c +++ b/Python/pyfpe.c @@ -1,6 +1,5 @@ #include "config.h" #include "pyfpe.h" - /* * The signal handler for SIGFPE is actually declared in an external * module fpectl, or as preferred by the user. These variable @@ -12,5 +11,5 @@ #ifdef WANT_SIGFPE_HANDLER jmp_buf PyFPE_jbuf; int PyFPE_counter = 0; -double PyFPE_dummy(){return(1.0);} +double PyFPE_dummy(void *dummy){ return 1.0; } #endif -- cgit v1.2.1