1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-17 00:22:59 +00:00

Use LINUX, not AIX, in medleyfp.h. (#63)

AIX was defined by a number of targets, but the only one that
doesn't currently have anything here is LINUX, so we can just
check that instead.
This commit is contained in:
Bruce Mitchener 2020-12-15 23:32:44 +07:00 committed by GitHub
parent 680e8485fe
commit 69adf2ffd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ volatile extern int FP_error;
#define FPCLEAR
#define FPTEST(result) (isinf(result) || isnan(result))
#elif defined(AIX)
#elif defined(LINUX)
#define FPCLEAR
#define FPTEST(result) ((!finite(result)) || isnan(result))