1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-26 08:43:40 +00:00

Use the C99 floating point error code on Solaris. (#243)

Previously, we were building as C89 and the new code required
the C99 flag on Solaris with Sun Studio. Now that we build as
C99, this should work now and we can remove the special case
code.
This commit is contained in:
Bruce Mitchener
2021-01-20 02:35:00 +07:00
committed by GitHub
parent 26857f3131
commit c89b6fd611

View File

@@ -39,11 +39,6 @@ extern volatile sig_atomic_t FP_error;
#define FPCLEAR FP_error = 0;
#define FPTEST(result) FP_error
#elif defined(OS5)
#include <ieeefp.h>
#define FPCLEAR
#define FPTEST(result) (!finite(result))
#elif defined(DOS)
#include <i32.h>
#define FPCLEAR