summaryrefslogtreecommitdiff
path: root/qnx/qnx.c
blob: a7a661b1e318fbacb290b1f58a86aa11ff4554c2 (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