diff options
Diffstat (limited to 'Python/pyfpe.c')
-rw-r--r-- | Python/pyfpe.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/pyfpe.c b/Python/pyfpe.c index a1de1af..6048cde 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 |