Some patches to Lee Busby's fpectl mods that accidentally didn't make it
into 1.5a4.
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