This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Various updates and fixes to some of the SysV IPC ops and their tests
[perl5.git] / qnx / qnx.c
CommitLineData
be8a15fc
AG
1/* If we're compiling with watcom, we want to silence domain errors */
2#if defined(__QNX__) && defined(__WATCOMC__)
3#include <math.h>
4
5/* Return default value and print no error message */
6int matherr( struct exception *err )
7 {
8 return 1;
9 }
10
11#endif