diff options
author | Guido van Rossum <guido@python.org> | 1997-10-20 23:50:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-20 23:50:01 (GMT) |
commit | e85da651dd8141039efeca243907a4d91755b527 (patch) | |
tree | 4e61de38e7c38d93386609654a0ba1eaf4482f5d /Python | |
parent | 9476a78c1e310ecea0ceb953e36ec7e2d8f67856 (diff) | |
download | cpython-e85da651dd8141039efeca243907a4d91755b527.zip cpython-e85da651dd8141039efeca243907a4d91755b527.tar.gz cpython-e85da651dd8141039efeca243907a4d91755b527.tar.bz2 |
Some patches to Lee Busby's fpectl mods that accidentally didn't make it
into 1.5a4.
Diffstat (limited to 'Python')
-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 |