summaryrefslogtreecommitdiff
path: root/lisp/math.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-17 10:51:53 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2024-02-24 10:55:43 -0800
commit7a9fa61950200eb13600cdb57830e58a53bf78fa (patch)
tree2bba1bd11b0bb286dfd308775521d633058221d4 /lisp/math.c
parent981dfdb23272bc02977c5bb9bc18d0d3fb618fa3 (diff)
unifdef __UNIXOS2__
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'lisp/math.c')
-rw-r--r--lisp/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/math.c b/lisp/math.c
index f298e5c..4ca11e6 100644
--- a/lisp/math.c
+++ b/lisp/math.c
@@ -32,7 +32,7 @@
#include "lisp/math.h"
#include "lisp/private.h"
-#if defined(__UNIXOS2__) || defined(__APPLE__)
+#ifdef __APPLE__
# define finite(x) isfinite(x)
#endif