Commit d0dc5b06 authored by Guido van Rossum's avatar Guido van Rossum

Restructure the file so that it is never empty. No longer needs

Metrowerks specific #ifdef.
parent 3293b07d
......@@ -11,14 +11,14 @@
#ifdef WANT_SIGFPE_HANDLER
jmp_buf PyFPE_jbuf;
int PyFPE_counter = 0;
double PyFPE_dummy(void *dummy){ return 1.0; }
#else
#ifdef __MWERKS__
/*
* Metrowerks fails when compiling an empty file, at least in strict ANSI
* mode. - [cjh]
*/
static double PyFPE_dummy( void * );
static double PyFPE_dummy( void *dummy ) { return 1.0; }
#endif
#endif
/* Have this outside the above #ifdef, since some picky ANSI compilers issue a
warning when compiling an empty file. */
double
PyFPE_dummy(dummy)
void *dummy;
{
return 1.0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment