mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
Changes for BeOS, QNX and long long, by Chris Herborth.
This commit is contained in:
parent
7d896ab1bb
commit
1a8791e0b8
12 changed files with 559 additions and 1 deletions
|
@ -12,4 +12,13 @@
|
|||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue