1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-03 18:06:23 +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

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))