blob: 6c819e3209ba752f3013611d706410c8924b6b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* If we're compiling with watcom, we want to silence domain errors */
#if defined(__QNX__) && defined(__WATCOMC__)
#include <math.h>
/* Return default value and print no error message */
int matherr( struct exception *err )
{
return 1;
}
#endif
|