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:
@@ -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))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user